मैं कुछ अभ्यासों के माध्यम से काम कर रहा हूं और एक चेतावनी मिली है जिसमें कहा गया है:
अंतर्निहित रूपांतरण पूर्णांक सटीकता खो देता है: 'NSUInteger' (उर्फ 'अहस्ताक्षरित लंबी') को 'int'
#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;
}