我很难弄清楚在哪里寻找我看到的这个新问题。我正在运行react-native
版本0.44.1
,但我遇到了崩溃。xcode中的日志显示:
FATAL: Attempting to release access but the mutator does not have access.
在堆栈跟踪中,我看到它是UIApplicationMain
:
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
UIApplicationMain
追踪中:
0x113f2091d <+159>: movq 0x1099bf4(%rip), %rbx ; (void *)0x000000011042ad50: objc_release
我应该试图找到什么来解决这个问题?