[objc] NSInteger 를 NSMutableArray 에 추가하기

천현철·2021년 8월 17일
0

iOS

목록 보기
46/51
post-custom-banner

objc:

NSMutableArray *array = [[NSMutableArray alloc] init];
NSInteger num = 7;
NSNumber *number = [NSNumber numberWithInt:num];
[ar addObject:number];
NSLog(@"Array %@",array);

https://stackoverflow.com/questions/8600841/adding-nsinteger-object-to-nsmutablearray

profile
기도하지말고 행동하라

0개의 댓글