我正在 UIView 控制器中创建 UITableView
- (void)viewDidLoad
{
[super viewDidLoad];
self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 470, self.view.frame.size.height) style:UITableViewStylePlain];
self.tableView.dataSource = self;
self.tableView.delegate = self;
[self.view addSubview:self.tableView];
NSLog(@"tableView is '%@'",self.tableView);
}
NSLog 结果:“tableView is '< UITableView: 0x7c60c00; frame = (0 0; 470 1004); clipsToBounds = YES;gestureRecognizers = ; layer = ; contentOffset: {0, 0}>'”
当 itemArray 被其他控制器修改时,将调用 refreshTableView 方法
**SideBarViewController *sideBarViewController = [[SideBarViewController alloc]init];
[sideBarViewController refreshTableView];**
-(void)refreshTableView {
[self createItemArray];
NSLog(@"reload itemArray->%@",self.itemArray);
NSLog(@"tableView is '%@'",self.tableView);
[self.tableView reloadData];
}
不知何故,NSLog 结果变成:“ tableView is '(null)' ”。并且不会重新加载 tableView。
为什么?请帮忙。谢谢。
更新:
itemArray 的 NSLog 很好:
更改之前重新加载 itemArray->( "test.md" )
更改后重新加载 itemArray->( "test.md", "test2.md" )
更新2:
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [self.itemArray count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = [self.itemArray objectAtIndex:indexPath.row];
return cell;
}
更新 3:
.h
@interface SideBarViewController : UIViewController<IIViewDeckControllerDelegate,UITableViewDataSource,UITableViewDelegate>
.m
@interface SideBarViewController ()
@property (nonatomic,strong) UITableView *tableView;
@end
@implementation SideBarViewController
@synthesize tableView = _tableView;
更新4 :
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath*)indexPath
方法工作正常,删除行后重新加载表视图。