我有一个uitableviewcontroller 这是.h文件代码
@interface addToFavourites : UITableViewController {
}
@end
这里是.m文件代码
#import "addToFavourites.h"
@implementation addToFavourites
- (id)initWithStyle:(UITableViewStyle)style {
if (self = [super initWithStyle:style]) {
}
return self;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 5;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *MyIdentifier = @"MyIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:MyIdentifier] autorelease];
}
// Configure the cell
return cell;
}
@end
在另一个班级我使用此代码显示此视图
addToFavouritesobj = [[addToFavourites alloc] initWithStyle:UITableViewStylePlain];
[self.navigationController pushViewController:addToFavouritesobj animated:YES];
如何调用此uitableviewcontroller
类的重载方法?
不需要声明tableview,因为此视图会自动生成表
我很困惑如何重新加载表格?
答案 0 :(得分:12)
addToFavouritesobj.tableView
将授予您访问UITableView
对象的权限。
[addToFavouritesobj.tableView reloadData]
AddToFavouritesController
。