次のエラーが発生する次のコードを書いています
@implementation ViewController
NSArray *myArray = [[NSArray alloc]initWithObjects:@"paul",@"cyrus",@"victor",nil ];
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
}
「myArray」を宣言した行で「コンパイル時の定数ではない初期化要素」を取得しています..
「.h」ファイルではなく「.m」ファイルで配列を初期化していることに注意してください。