我在Xcode中收到此警告

comparison of addresses of NSUbiquitycontainerDidChangeNotification not equal to a null pointer is always true

它位于核心数据集成框架中
CDEICloudFileSystem.m


- (void)addUbiquityContainerNotificationObservers  {

 [self removeUbiquityContainerNotificationObservers];

/// in this line
if (&NSUbiquityIdentityDidChangeNotification != NULL) {
///

    __weak typeof(self) weakSelf = self;
    ubiquityIdentityObserver = [[NSNotificationCenter defaultCenter] addObserverForName:NSUbiquityIdentityDidChangeNotification object:nil queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *note) {
        __strong typeof(weakSelf) strongSelf = weakSelf;
        [strongSelf stopMonitoring];
        [strongSelf willChangeValueForKey:@"identityToken"];
        [strongSelf didChangeValueForKey:@"identityToken"];
    }];
  }
}

有人可以告诉我如何解决这个问题吗?

谢谢

最佳答案

我写了那个代码。正如一些人指出的那样,在使用它之前要确保NSUbiquityIdentityDidChangeNotification符号存在。在iOS 6之前,该通知不存在。

该代码已有数年历史,并且该框架现在不支持iOS 5,因此我将删除该检查。

更新
事实证明该支票无法删除,因为我们仍然支持OS X 10.7。因此,我添加了#pragmas来使警告静音。

10-08 07:29