我一直在练习 tableViews 但我不知道如何在单击按钮时插入新项目。
这就是我所拥有的:
BIDViewController.h
:
#import <UIKit/UIKit.h>
@interface BIDViewController : UIViewController
// add protocols
<UITableViewDataSource, UITableViewDelegate>
//this will hold the data
@property (strong, nonatomic) NSMutableArray *names;
- (IBAction)addItems:(id)sender;
@end
BIDViewController.m
:
#import "BIDViewController.h"
@interface BIDViewController ()
@end
@implementation BIDViewController
//lazy instantiation
-(NSMutableArray*)names
{
if (_names == nil) {
_names = [[NSMutableArray alloc]init];
}
return _names;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// add data to be display
[self.names addObject:@"Daniel"];
[self.names addObject:@"Alejandro"];
[self.names addObject:@"Nathan"];
}
//table view
-(NSInteger)tableView:(UITableView*)tableView
numberOfRowsInSection:(NSInteger)section
{
return [self.names count];
}
- (UITableViewCell *) tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"identifier"];
if (cell == nil) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"identifier"];
}
cell.textLabel.text = self.names [indexPath.row];
return cell;
}
- (IBAction)addItems:(id)sender {
// I thought it was as simple as this, but it doesn't work
[self.names addObject:@"Brad"];
[tableView relaodData];
}
@end
我认为这是一个简单的向数组中插入项目而不是重新加载数据,但它不起作用。
有人可以告诉我如何在单击按钮时向 tableView 添加新项目吗?
非常感谢