开发ios原生插件时,如何跳转新的一个ViewController,我使用了代码:
Test1ViewController *vc = [[Test1ViewController alloc] init];
[[weexInstance.viewController navigationController] pushViewController:vc animated:YES];
然后在JS中调用中断点有触发,但是没有跳转。
开发ios原生插件时,如何跳转新的一个ViewController,我使用了代码:
Test1ViewController *vc = [[Test1ViewController alloc] init];
[[weexInstance.viewController navigationController] pushViewController:vc animated:YES];
然后在JS中调用中断点有触发,但是没有跳转。
VJayLau (作者)
好的,行了,谢谢
2019-03-13 11:59