我的NSMutableArray和UITableView出现了一个奇怪的问题。
数组中有4个项目,表格显示4行,但每行只包含第一个数组项目,而不是第1行显示数组项目1,第2行显示第2项等等...
这是我的代码:
My Mutable Array //在.h
NSMutableArray *tableRows;
//在.m
tableRows = [[NSMutableArray arrayWithObjects:@"For Business, For Pleasure",
@"A Great Decision",
@"Air Charter Your Honeymoon",
@"Time Flies", nil] retain];
我的表数据源和委托有
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
return (NSInteger)[tableRows count];
}
-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellID = @"CELL_AIR";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
if(cell == nil) {
cell = [self makeTableCell:cellID identifier:indexPath];
}
return cell;
}
-(UITableViewCell *)makeTableCell:(NSString *)identifier identifier:(NSIndexPath *)indexPath {
//frames
CGRect cellFrame = CGRectMake(0, 10, 320, 50);
CGRect lbl1Frame = CGRectMake(10, 0, 320, 25);
CGRect lbl2Frame = CGRectMake(10, 20, 320, 20);
UITableViewCell *cell = [[UITableViewCell alloc] initWithFrame:cellFrame reuseIdentifier:identifier];
UILabel *lbl1 = [[UILabel alloc] initWithFrame:lbl1Frame];
lbl1.tag=1;
lbl1.font = [UIFont systemFontOfSize:19];
lbl1.text = [tableRows objectAtIndex:indexPath.row];
UILabel *lbl2 = [[UILabel alloc] initWithFrame:lbl2Frame];
lbl2.tag=2;
lbl2.text = @"Tap to read more...";
lbl2.font = [UIFont systemFontOfSize:12];
[cell.contentView addSubview:lbl1];
[cell.contentView addSubview:lbl2];
return cell;
}
-(NSInteger) tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section {
return 1;
}
-(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 50;
}
任何帮助都将非常感谢!
由于
C
答案 0 :(得分:3)
这会导致错误:
-(NSInteger) tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section {
return 1;
}
每个部分只有一行。因此,对于每个部分,索引路径再次从0开始,然后您只获得数组中的第一个项
我认为最好的方法应该是:
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
-(NSInteger) tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section {
return (NSInteger)[tableRows count];
}
答案 1 :(得分:1)
根据vodkhang的回答,我就是这样做的:
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
-(NSInteger) tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section {
return [tableRows count];
}
-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellID = @"CELL_AIR";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
if(cell == nil) {
cell = [self makeTableCell:cellID identifier:indexPath];
}
[[cell textLabel]
setText:[tableRows objectAtIndex:indexPath.row]];
return cell;
}
我根本不使用(NSInteger)[数组计数]。由于方法计数返回整数类型。我希望这会有所帮助。