¿Cómo almacenaría objetos CGRect en un NSMutableArray y luego los recuperaría?
iphone
nsmutablearray
core-graphics
Krishna Chaitanya Bandaru
fuente
fuente
¿Qué opinas de esta forma de almacenar las fechas CGRect?
fuente
Almacenamos el
CGRect
,CGPoint
,CMTime
objetos de unaNSMutableArray
,[arrayName addObject:[NSValue valueWithCGPoint:MyCGPoint]]
[arrayName addObject:[NSValue valueWithCGRect:MyCGRect]]
[arrayName addObject:[NSValue valueWithCMTime:MyCMTime]]
[arrayName addObject:[NSValue valueWithCMTimeRange:MyCMTimeRange]]
fuente
fuente