我正在使用最新的 SDK 开发一个 iOS 应用程序。
我想对.mm
文件执行此操作:
@interface MyClass ()
{
int _cars[16];
...
}
@end
@implementation MyClass
-(id)init
{
self = [super init];
if (self)
{
_cars = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
}
...
}
但我收到以下错误:
Array type 'int [16]' is not assignable
我该如何解决这个错误?