调整内容tableview自定义obj c的大小

时间:2019-06-27 12:27:35

标签: ios objective-c uitableview

从照片中可以看出,我必须解决这个问题。

enter image description here

如果我单击两行之一,则会弹出图标,并且labelimageView会变小。

我必须能够选择和取消选择内容,而不会减少内容。

我正在尝试sizeToFit,但没有成功...

另一件事是我以这种方式使用自定义.xib

-(MultiIbanTableCell *)tableView:(nonnull UITableView *)tableView cellForRowAtIndexPath:(nonnull NSIndexPath *)indexPath {
    NSString *idCell = @"MultiIbanTableCell";

    MultiIbanTableCell *cell;
    DtoInstrument *account = (DtoInstrument *)[self.bankSelected.dtoBank.instruments objectAtIndex:indexPath.row];
    cell = [tableView dequeueReusableCellWithIdentifier:idCell];

    if (cell) {
        [cell setBankCellWithBankData:account];
    }
    else {
        cell = [MultiIbanTableCell getBankCellWithBankData:account];

    }

    [cell.logoImage sd_setImageWithURL:[NSURL URLWithString:self.bankSelected.logo_search]
                      placeholderImage:nil
                             completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
                             }];

    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    cell.textLabel.adjustsFontSizeToFitWidth = YES;
    cell.contentView.sizeToFit;

    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    //link store vuoto
    [tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryCheckmark;
    self.selectedInstrument = (DtoInstrument *)[self.bankSelected.dtoBank.instruments objectAtIndex:indexPath.row];
    self.confirmButton.enabled = YES;
    tableView.sizeToFit;
}

0 个答案:

没有答案