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
Just a cast like:
float a = [[_myArray objectForKey:@"myKey"] count] / 5.0;
float a = [(NSArray *)[_myArray objectForKey:@"myKey"] count] / 5.0;