레이블이 NSMutableArray인 게시물을 표시합니다. 모든 게시물 표시
레이블이 NSMutableArray인 게시물을 표시합니다. 모든 게시물 표시

2011년 8월 16일 화요일

[IPhone Dev] NSMutableArray Bad Access -while NSMutableArray reading

nonatomic


That's the one we have to know.


Im not describe what it is because that is not you wanna know :p


So i just get to the point.


if you get bad access error when you read a NSMutableArray, you may wanna use the array in @property way.


make it as a property then use like this


self.dotArray




@property (nonatomicretainNSMutableArray *dotArray;
  



Mayday Timeattack - Free on Appstore


[IPhone Dev] CGPoint in NSMutableArray

Cannot use NSMutableArray with CGPoint.


In .net we use like this


List<CGPoint> list;


but since we don't have that in objective-c, we use this.


NSMutableArray * pointArray = [NSMutableArray array];
        
[pointArray addObject:[NSValue valueWithCGPoint:location]];
[pointArray addObject:[NSValue valueWithCGPoint:lastPoint]];
        
CGPoint retrievedPoint = [[pointArray objectAtIndex:0CGPointValue];
 
no more words to say.


That's all~



Mayday Timeattack - Free on Appstore