1.报错:FBClassStrongLayout.mm 文件:layoutCache[currentClass] = ivars;
解决:替换为layoutCache[(id)currentClass] = ivars;
2.编译正常但运行时出现crash
indirect_symbol_bindings[i] = cur->rebinding FBRetainCycleDetector iOS15 fishhook c
原来indirect_symbol_bindings[i]=cur->rebindings[j].replacement;
替换为:
if (i < (sizeof(indirect_symbol_bindings) / sizeof(indirect_symbol_bindings[0]))) {indirect_symbol_bindings[i]=cur->rebindings[j].replacement;}
UIAlertView已被弃用>改用UIAlertController
+ (void)alertWithTitle:(NSString *)titlemessage:(NSString *)messagedelegate:(id<UIAlertViewDelegate>)delegateadditionalButtonTitle:(NSString *)additionalButtonTitle {[alertView dismissWithClickedButtonIndex:0 animated:NO];UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleAlert];UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {}];[alertController addAction:okAction];[[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:alertController animated:NO completion:nil];NSLog(@"%@: %@", title, message);
}
pod ‘MLeaksFinder’, ‘~> 1.0.0’,:configurations => [‘Debug’,‘Release’]
终端重新pod install