ボタンをクリックして配列にオブジェクトを追加するにはどうすればよいですか?私はこのメソッドを使用します:
- (void)insertNewObject:(id)sender
{
[orderListe addObject:[[DataOrder alloc]initWithName:@"Michael" price:18 taille:@"junior" supplement:@"boeuf"]];
}
これを行うと、アプリケーションがクラッシュして次のように言います。
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[DataOrder initWithName:]: unrecognized selector sent to instance 0x8aa4fa0'
オブジェクトを配列に単純に追加するにはどうすればよいですか? ありがとうございました