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 は '< UITableView: 0x7c60c00; フレーム = (0 0; 470 1004); clipsToBounds = YES; ジェスチャレコグナイザー = ; レイヤー = ; 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 は問題ありませんでした:
変更前 reload itemArray->( "test.md" )
変更後 reload 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
行を削除した後、テーブルビューがリロードされました。