.xib
这是我的问题:我用一些标签创建了一个。我创建了一个UITableViewController
这样的:
- (void)viewDidLoad {
[super viewDidLoad];
dataToShow = [[NSArray alloc] initWithObjects:@"cave",@"garage",nil];
}
- (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] autorelease];
}
cell.textLabel.text = [dataToShow objectAtIndex:indexPath.row];
return cell;
}
和正确填写numberOfSectionInTableView
,numberOfRowInSection
当运行程序时,列表显示为它应该。我现在想根据用户在表格视图中单击的行来加载我创建的 xib 并用文本填充标签。这可能吗?如果是,我该如何解决?谢谢