Je travaille à travers quelques exercices et j'ai un avertissement qui dit:
La conversion implicite perd la précision entière 'NSUInteger' (alias 'unsigned long') en 'int'
Je suis tout à fait le noob et apprécierais toute aide .. merci.
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[])
{
@autoreleasepool {
NSArray *myColors;
int i;
int count;
myColors = @[@"Red", @"Green", @"Blue", @"Yellow"];
count = myColors.count; // <<< issue warning here
for (i = 0; i < count; i++)
NSLog (@"Element %i = %@", i, [myColors objectAtIndex: i]);
}
return 0;
}