8

从 XCode5/ios7 开始,在验证我的应用程序时,我现在在由 xcode 自动生成的选择器上收到验证警告。搜索我的源代码后,我没有看到任何令人担忧的东西。有没有其他人遇到过这个?

@interface User (CoreDataGeneratedAccessors)

- (void)addMatchesObject:(Match *)value;
- (void)removeMatchesObject:(Match *)value;
- (void)addMatches:(NSSet *)values;
- (void)removeMatches:(NSSet *)values;

- (void)addNotificationsObject:(Notification *)value;
- (void)removeNotificationsObject:(Notification *)value;
- (void)addNotifications:(NSSet *)values;
- (void)removeNotifications:(NSSet *)values;

@end

更新

令人惊讶的是,我重构了我的代码以使用 addMatchesObject: 而不是 addMatches,并且验证警告消失了。....dafuq?

4

1 回答 1

0

这是令人震惊的。我还必须重构我的核心数据选择器的负载。

在我这样做之前,我对该应用程序的更新在应用程序审查中花费的时间比我的其他应用程序要长得多,因此值得这样做。

于 2013-10-07T12:53:07.843 回答