0

テーブルがロードされたときにセルの幅を設定するためにこのコードを試しています。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);

}
4

0 に答える 0