刚刚将 xcode 更新到 4.5,我在我的一个 iOS 应用程序中收到了一个我以前没有收到的错误。更新前没有出现问题。
基本上,我有一个需要排序的数组,基于其他一些不相关的测试..
NSArray *sortedArray = [arrayFiles sortedArrayUsingComparator:^(id a, id b) {
NSString *first = [(PPFile*)a name];
NSString *second = [(PPFile*)b name];
if ([a isFileAvailableForRead] && ![b isFileAvailableForRead]) {
return NSOrderedAscending;
}else if(![a isFileAvailableForRead] && [b isFileAvailableForRead]) {
return NSOrderedDescending;
}
return [first compare:second];
}];
错误出现在块的最后一次返回上:
Return type 'NSComparisonResult' (aka 'enum NSComparisonResult') must match previous type 'NSInteger' (aka 'int') when block literal has unspecified explicit return type
谢谢。