我正在尝试使用此代码在加载表格时设置单元格的宽度。但它在 didSelectRowAtIndexPath 方法中可以正常工作,但在cellForRowAtIndexPath中不能帮助我。
cell.frame = CGRectMake(50, cell.frame.origin.y, 275, 44)
因此,当我们单击单元格时,它不会在加载时直接更改宽度。是的,我也尝试过 if (cell == nil) { cell = [[UITableViewCell alloc] initWithFrame:CGRectMake( 30, cell.frame.origin .y, 275, 44)]; }
查看我的所有表格方法代码
#pragma mark - Table Method
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 44;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 7;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return ((section == 0) ?
3 : (section == 1) ?
1 : (section == 2) ?
1 : (section == 3) ?
2 : (section == 4) ?
1 : (section == 5) ?
1 : (section == 6) ?
1 : 1);
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
if (cell == nil)
{
cell = [[UITableViewCell alloc] initWithFrame:CGRectMake( 30, cell.frame.origin.y, 275, 44)];
}
if (indexPath.section == 0) {
cell.frame = CGRectMake(50, cell.frame.origin.y, 275, 44);
return cell;
}
if (indexPath.section >= 1)
{
cell.frame = CGRectMake( 30, cell.frame.origin.y, 200, 44);
cell.textLabel.text=@"Dhaval";
}
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell =[tableview cellForRowAtIndexPath:indexPath];
cell.frame = CGRectMake(50, cell.frame.origin.y, 275, 44);
}