将NSRects作为对象放入数组中?

时间:2011-10-15 00:25:51

标签: objective-c cocoa nsarray nsrect

我想制作一个NSMutableArray并用例如NSRectMake创建的矩形填充它。但是数组只允许对象。我该怎么做才能将NSRects保存在数组中?

1 个答案:

答案 0 :(得分:11)

使用专门为此设计的NSValue。在您的情况下,请使用valueWithRect:

Everything is explained here in Apple's corresponding Programming Guide