12th Wed
[iPhone] 変換 CGRect <-> NSValue
iPhoneに限った話ではないのですが。メモ:
via
http://discussions.apple.com/thread.jspa?messageID=8157595
###CGRect → NSValue
CGRect rect = CGRectMake(x,y,w,h);
NSValue *rectValue = [NSValue valueWithCGRect:rect];
###NSValue → CGRect
CGRect rect = [someNSValue CGRectValue];
posted by
satoko on Wed 12 Aug 2009 at 22:19 with 0 comments