多分誰かが私を助けることができます。に新しいテーブル ビュー行を追加したいと考えていtableView
ます。右上隅のプラス ボタンを押すと、アラートがポップアップ表示され、テキストを入力できます。このテキストがテーブルに追加されます。
プラスボタンを押すと、常にエラーが発生します
(SIGABRT :'NSInvalidArgumentException', reason: ' * -[__NSArrayM insertObject:atIndex:]: object cannot be nil' * First throw call stack:)
理解できません。
@property NSMutableArray *objects;
@property NSString *shopping;
- (void)insertNewObject:(id)sender {
if (!self.objects) {
self.objects = [[NSMutableArray alloc] init];
}
//call an alert Action
UIAlertController *textEntry = [UIAlertController alertControllerWithTitle:@"new Item" message:@"" preferredStyle:UIAlertControllerStyleAlert];
[textEntry addTextFieldWithConfigurationHandler:^(UITextField *textField){
textField.placeholder = NSLocalizedString ( @"zb. pickle", @"cde");
}];
UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){
UITextField *enteredText = textEntry.textFields.firstObject;
_shopping = enteredText.text;
}];
[textEingabe addAction:okAction];
[self presentViewController:textEingabe animated:YES completion:nil];
[_objects insertObject:_shopping atIndex:0];
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
//Not quite sure if this is the right code
cell.textLabel.text = [_objects objectAtIndex:[indexPath row]];
return cell;