我想实现这样的事情,但由于 id 导致我在 add 中出错!
NSMutableArray *rgbarray = [[NSMutableArray alloc] init];
NSInteger rgb[3];
const CGFloat *components = CGColorGetComponents(cgcolor);
CGFloat cgred = components[0];
CGFloat cggreen = components[1];
CGFloat cgblue = components[2];
rgb[0] = cgred;
rgb[1] = cggreen;
rgb[2] = cgblue;
[rgbarray addObject:rgb];
我想添加 rgb 而不是 id ?