错误更改TableView中的数据目标C.

时间:2015-05-29 00:50:19

标签: ios objective-c uitableview unrecognized-selector

我一直在研究Nutting,Olsson和Mark iOS7教科书中的一个桌面示例。我有一个tableview工作得很好,所以我在我的视图中添加了一个按钮。当我在按钮内部触摸时,它调用方法addData。 addData只是将另一个对象附加到表中显示的数组中。

代码编译很好,但是当我点击按钮时,它会崩溃。为什么是这样?我不理解错误消息,但这里是代码。

#import "ViewController.h"
@interface ViewController ()
@property (copy, nonatomic) NSMutableArray* dwarves;
@end

@implementation ViewController

- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
self.dwarves = @[@1.5,@2.,@2.5,@3.,@3.5,@4.,@4.5,@5.,@5.5,@6.,@6.5,@7.];
UITableView *tableView = (id)[self.view viewWithTag:1];
UIEdgeInsets contentInset = tableView.contentInset;
contentInset.top = 20;
[tableView setContentInset:contentInset];
}

- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [self.dwarves count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *SimpleTableIdentifier = @"SimpleTableIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:
                         SimpleTableIdentifier];
if (cell == nil) {
    cell = [[UITableViewCell alloc]
            initWithStyle:UITableViewCellStyleDefault
            reuseIdentifier:SimpleTableIdentifier];
}
cell.textLabel.text = [NSString stringWithFormat:@"%@",self.dwarves[indexPath.row]];
return cell;
}

- (IBAction)addData:(id)sender {
[_dwarves addObject:@100];
}
@end

这是错误:

2015-05-28 18:37:24.449 TableView Practice[3630:145774] -[__NSArrayI addObject:]: unrecognized selector sent to instance 0x7924aa40
2015-05-28 18:37:24.453 TableView Practice[3630:145774] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSArrayI addObject:]: unrecognized selector sent to instance 0x7924aa40'

此代码有什么问题?

3 个答案:

答案 0 :(得分:0)

无论你如何宣称矮人,它都是NSArray而不是NSMutableArray。因此addObject崩溃。我相信" copy"属性和可变类型不会做你认为应该做的事情。

更好地制造"矮人"只是一个正常的"强大的"属性,但初始化

self.dwarves = [@[@1.5,@2.,@2.5,@3.,@3.5,@4.,@4.5,@5.,@5.5,@6.,@6.5,@7.] mutableCopy];

答案 1 :(得分:0)

使用以下代码设置数组,然后可以添加/删除对象。

window.localStorage

答案 2 :(得分:0)

self.dwarves = @[@1.5,@2.,@2.5,@3.,@3.5,@4.,@4.5,@5.,@5.5,@6.,@6.5,@7.];

您传递的是NSArray,这是不可变的:

self.dwarves = [@[@1.5,@2.,@2.5,@3.,@3.5,@4.,@4.5,@5.,@5.5,@6.,@6.5,@7.] mutableCopy];
//or
self.dwarves = [[NSMutableArray alloc] initWithArray:@[@1.5,@2.,@2.5,@3.,@3.5,@4.,@4.5,@5.,@5.5,@6.,@6.5,@7.]];

允许您修改/更新/修改NSMutableArray

中的值

使其变为可变之后,您需要:

- (IBAction)addData:(id)sender 
{
        [_dwarves addObject:@100];

        UITableView *tableView = (id)[self.view viewWithTag:1];
        [tableView reloadData];
        // or 
        [(UITableView *)[self.view viewWithTag:1] reloadData];
        // to see the changes you made after adding data to your dataSource
}