반응형
NSMutableArray에 CGPoint를 넣고 가져오려면
NSValue를 사용해야 한다.
- NSMutableArray에 CGPiont 넣기
NSMutableArray *array = [NSMutableArray new];
CGPoint point = CGPointMake(100, 100);
[array addObject:[NSValue valueWithCGPoint:point]];
- NSMutableArray에서 CGPoint 가져오기
NSValue *value = array[0];
CGPoint point = [value CGPointValue];
반응형
'iOS > Swift + Objective-c' 카테고리의 다른 글
[Swift] FileManager로 디바이스에 파일 저장하기 (Document) (0) | 2022.08.04 |
---|---|
[Objective-c] SQL Cipher 사용하여 db 암호화하는 방법 (0) | 2022.06.20 |
[Swift / Obejctive-c] UIView를 UIImage로 변환하기 (render UIView to UIImage) (0) | 2022.06.14 |
[Swift/Objective-c] 타이머 사용하기, 반복 작업하기 (Timer) (1) | 2022.03.03 |
[Swift] CustomView 사용하기 (ReusableView, 재사용 가능한 뷰) (0) | 2022.02.26 |