我正在尝试使用IBAction将新单元格添加到UITableview但是当我按下模拟器上的添加按钮时没有任何反应。经过几个小时的stackoverflow和谷歌研究,我得出了这个代码。我认为它应该有效,但我无法弄清楚为什么它没有。
请帮助!!!!
我的.h文件
@interface HomeViewController : UIViewController{
NSMutableArray *countries;
}
- (IBAction)addFav:(id)sender;
@property (nonatomic, strong) IBOutlet UITableView *tableView1;
@end
和我的.m文件
#import "HomeViewController.h"
@interface HomeViewController ()
@end
@implementation HomeViewController{
}
@synthesize tableView1;
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
countries = [NSMutableArray new];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [countries count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"Cell";
UITableViewCell *cell = [tableView1 dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
}
cell.textLabel.text = [countries objectAtIndex:indexPath.row];
return cell;
}
- (IBAction)addFav:(id)sender {
[tableView1 beginUpdates];
[countries addObject:@"Finland"];
NSIndexPath *newIndexPath = [NSIndexPath indexPathForRow:([countries count] - 1) inSection:0];
[self.tableView1 insertRowsAtIndexPaths:[NSArray arrayWithObject:newIndexPath] withRowAnimation:UITableViewRowAnimationRight];
[tableView1 endUpdates];
[tableView1 reloadData];
}
@end
非常感谢任何帮助
感谢
答案 0 :(得分:1)
如果您一次只添加一个项目,可以考虑将addFav
方法修改为以下内容:
- (IBAction)addFav:(id)sender {
//[tableView1 beginUpdates];
[countries addObject:@"Finland"];
//NSIndexPath *newIndexPath = [NSIndexPath indexPathForRow:([countries count] - 1) inSection:0];
//[self.tableView1 insertRowsAtIndexPaths:[NSArray arrayWithObject:newIndexPath] withRowAnimation:UITableViewRowAnimationRight];
//[tableView1 endUpdates];
[tableView1 reloadData];
}
此外,您应该在HomeViewController
文件中注册UITableViewDelegate
到UITableViewDataSource
/ .h
协议。
将您的行更改为:
@interface HomeViewController : UIViewController <UITableViewDelegate,UITableViewDataSource>{
然后在IB / Storyboard中,您需要将Connections Inspector下delegate
的{{1}}和dataSource
个商家信息与您的tableView1
相关联。