我正在制作具有表格视图的应用程序,但我无法在表格视图中添加数据
我在 .h 文件中名为 NewTable 的 .xip 文件中有表格视图,这是我在 .m 文件中使用它的代码(listData 它是数组):
- (void)viewDidLoad{
[super viewDidLoad];
[self TestTable];
}
-(void)TestTable{
NSArray *array = [[NSArray alloc] initWithObjects:@"Vishal",@"Vinod",@"Sachin",@"Nilesh",@"Balu",@"Amrita",
@"susho",@"Akash",@"Nil",@"Lop",@"Koi",@"Absoulate",@"Dwalin",
@"Fili",@"Kili",@"Oin",@"Gloin",@"Bifur",@"Bofur",@"Bombur",nil];
self.listData = array;
[array release];
self.listData= array;
[self.NewTable reloadData];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [self.listData count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *SimpleTableIdentifier = @"SimpleTableIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:
SimpleTableIdentifier];
if(cell == nil){
cell = [[UITableViewCell alloc] autorelease];
}
NSUInteger row = [indexPath row];
cell.textLabel.text = [listData objectAtIndex:row];
return cell;
}
{{{{{{{{{{{当我添加nslog时cellForRowAtIndexPath
它不会在consol中打印任何东西!}}}}}}}}}} {{{{{{{{{{{当我添加nslogcellForRowAtIndexPath
不会在 consol 中打印任何内容!}}}}}}}}}} {{{{{{{{{{{另外,当我添加 nslog 时,cellForRowAtIndexPath
它不会在 consol 中打印任何内容!}}}}}} }}}}}