Since the update to Xcode 5.1 I can\'t archive my project any more. Xcode always says \"Multiple methods named \"count\" found with mismatched result, parameter type or attr
In case you don't want to write code like this [((NSArray*)aId) count]:
@interface NSArray () - (NSUInteger) arrayElementCount; @end @implementation NSArray() - (NSUInteger) arrayElementCount { return [self count]; } @end
Using arrayElementCount instead of 'count'