몇 가지 연습을 진행 중이며 다음과 같은 경고가 표시됩니다.
암시 적 변환은 정수 정밀도를 잃습니다 : 'NSUInteger'(일명 'unsigned long')에서 '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;
}