昨天我将iPhone 6s更新为iOS 11.3。当我打开我的应用程序时,它立即崩溃。我将崩溃跟踪到下面的代码,我发现我的'是'UIAlertAction是零。
即使在我取出__weak声明之后,代码也会运行并且不会崩溃,但是我的警报不会像以前一样弹出屏幕。我到处都使用过这些警报。
我的代码有问题或者这是一个合法的11.3 iOS错误吗? 更新到11.3之后是否有其他人遇到过类似的崩溃? 这个代码已经完美地工作了1.5年,现在没有了 变化。
- (void) alertGotoAppSettings:(NSString *)title :(NSString *)msg :(UIViewController *)view
{
UIAlertController *alert = [UIAlertController alertControllerWithTitle:title
message:msg
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction __weak *yes = [UIAlertAction
actionWithTitle:LOC(@"Yes")
style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action)
{
// Launch Settings for GPS
if (UIApplicationOpenSettingsURLString != nil) {
NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
if (IS_IOS_10_OR_LATER) {
[[UIApplication sharedApplication] openURL:url options:@{} completionHandler:^(BOOL success)
{
}];
}
else {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
}
}
}];
UIAlertAction __weak *no = [UIAlertAction
actionWithTitle:LOC(@"No")
style:UIAlertActionStyleCancel
handler:^(UIAlertAction * action)
{
dispatch_async(dispatch_get_main_queue(), ^{
[alert dismissViewControllerAnimated:YES completion:nil];
});
}];
[alert addAction:no];
[alert addAction:yes]; <---- 'yes' is nil here
UIAlertController __weak *weakAlert = alert;
dispatch_async(dispatch_get_main_queue(), ^{
UIAlertController *strongAlert = weakAlert;
[view presentViewController:strongAlert animated:YES completion:nil];
});
}
答案 0 :(得分:3)
yes
和no
都不应该是__weak
。同样,应从此代码段中删除weakAlert
/ strongAlert
模式。
弱引用只应在有问题的对象具有其他明确的强引用时使用,但您只是不希望您的代码建立另一个强引用。特别是,当存在强参考周期的风险时,您使用weak
。但这里没有这种潜在的强参考周期。坦率地说,将weak
与局部变量结合使用是没有意义的,因为没有其他明确的强引用。
底线,weak
表示“此对象可以解除分配,并且当没有强引用时,此特定引用可以设置为nil
”。但在这种情况下,由于您唯一的参考是weak
引用,因此没有任何强引用。因此,ARC可以自由地解除分配。
有问题的代码可能在过去有效(可能ARC对于何时释放对象更加保守),但在这种情况下删除这些weak
引用是正确的。它们没有任何用处,并且使对象的范围模糊不清。