[RCTContextExecutor dealloc] 中的 SIGABRT 每次重新加载
SIGABRT in [RCTContextExecutor dealloc] every reload
我是 React Native
的新手。
我遵循 this official facebook tutorial,每次我更改 index.ios.js
中的代码时,在 dealloc
方法的 RCTContextExecutor.m
中会出现 SIGABRT
异常:
- (void)dealloc
{
[self invalidate];
}
并且更新可以执行。谁能帮忙处理一下这个case?
提前致谢。
找到了如何解决 XCODE
时停止的问题(但不是足够好的原因):
- 运行
react-native
- 如果 运行 在模拟器上按
cmd+D
- 如果运行在真实设备上,摇动设备
- 按
Stop Profiling
我是 React Native
的新手。
我遵循 this official facebook tutorial,每次我更改 index.ios.js
中的代码时,在 dealloc
方法的 RCTContextExecutor.m
中会出现 SIGABRT
异常:
- (void)dealloc
{
[self invalidate];
}
并且更新可以执行。谁能帮忙处理一下这个case?
提前致谢。
找到了如何解决 XCODE
时停止的问题(但不是足够好的原因):
- 运行
react-native
- 如果 运行 在模拟器上按
cmd+D
- 如果运行在真实设备上,摇动设备
- 按
Stop Profiling