0

多分誰かが私を助けることができます。に新しいテーブル ビュー行を追加したいと考えてい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;
4

2 に答える 2

0

私はあなたのコードを修正しました。それを確認してください。

 [_objects insertObject:_shopping atIndex:0];
    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
    [self.tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];

アラート ビューの入力が完了する前に、オブジェクトを追加しています。そのため、alertview compltion 内にオブジェクトを挿入します。

- (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;

      [_objects insertObject:_shopping atIndex:0];
    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
    [self.tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];

    }];
    [textEingabe addAction:okAction];
    [self presentViewController:textEingabe animated:YES completion:nil];



    - (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;
于 2016-07-08T09:21:55.807 に答える
0

nil を挿入しています_objects

次のようになります。

UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){
    UITextField *enteredText = textEntry.textFields.firstObject;
   _shopping = enteredText.text;
   [_objects insertObject:_shopping atIndex:0]; // insert object here
}];

[textEingabe addAction:okAction];
[self presentViewController:textEingabe animated:YES completion:nil];

?のデフォルト値がない限り_shopping

お気に入り:

_shopping = @"default";
<some code>
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]; // this way _shopping will never be nil.
于 2016-07-08T09:37:33.510 に答える