我不能在我身边重现这一点,但我的一位用户因以下错误而崩溃(在iOS 11上)。
Fatal Exception: NSInternalInconsistencyException
Invalid parameter not satisfying: bundleProxy != nil
调用下面的代码段时:
[[UNUserNotificationCenter currentNotificationCenter]
requestAuthorizationWithOptions:
(UNAuthorizationOptionAlert |
UNAuthorizationOptionBadge |
UNAuthorizationOptionSound)
completionHandler:
^(BOOL granted, NSError * _Nullable error) {
if (granted) {
[self getNotificationSettings];
}
}];
我自己无法复制它。我在这里或网上找不到类似的东西都没有运气。有没有其他人遇到这个可以解决问题的人?