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

2011년 8월 16일 화요일

[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


[IPhone Dev] How to CGPoint compare? Here it is!

CGPoint a, b;
if(a == b)



The above codes does not work;; Ah~~~ no~~~


so you have to use below.



if (CGPointEqualToPoint(location, lastPoint)) {


    }

 



Mayday Timeattack - Free on Appstore