标签: objective-c cocoa nsarray nsrect
我想制作一个NSMutableArray并用例如NSRectMake创建的矩形填充它。但是数组只允许对象。我该怎么做才能将NSRects保存在数组中?
NSMutableArray
NSRectMake
NSRects
答案 0 :(得分:11)
使用专门为此设计的NSValue。在您的情况下,请使用valueWithRect:
NSValue
valueWithRect:
Everything is explained here in Apple's corresponding Programming Guide