崩溃"无效参数不满足:bundleProxy!= nil" [[UNUserNotificationCenter currentNotificationCenter] requestAuthorizationWithOptions ..]

时间:2017-11-12 23:24:40

标签: ios iphone push-notification ios11

我不能在我身边重现这一点,但我的一位用户因以下错误而崩溃(在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];
      }
}];

我自己无法复制它。我在这里或网上找不到类似的东西都没有运气。有没有其他人遇到这个可以解决问题的人?

0 个答案:

没有答案