0

我正在尝试使用 IBAction 向 UITableview 添加一个新单元格,但是当我按下模拟器上的添加按钮时没有任何反应。经过对 stackoverflow 和 google 的数小时研究,我想出了这段代码。我认为它应该工作,但我不知道为什么它不工作。

请帮忙!!!!

我的 .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

任何帮助将不胜感激

谢谢

4

1 回答 1

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 下的delegatedataSourceoutlet链接到您的.tableView1HomeViewController

于 2013-07-21T13:42:35.750 回答