Wie würde ich CGRect-Objekte in einem NSMutableArray speichern und später abrufen?
iphone
nsmutablearray
core-graphics
Krishna Chaitanya Bandaru
quelle
quelle
Was halten Sie von dieser Art, CGRect-Daten zu speichern?
quelle
Wir speichern die
CGRect
,CGPoint
,CMTime
Objekte in einNSMutableArray
,[arrayName addObject:[NSValue valueWithCGPoint:MyCGPoint]]
[arrayName addObject:[NSValue valueWithCGRect:MyCGRect]]
[arrayName addObject:[NSValue valueWithCMTime:MyCMTime]]
[arrayName addObject:[NSValue valueWithCMTimeRange:MyCMTimeRange]]
quelle
quelle