我正在尝试将UIButton
的宽度调整为文本的宽度。当我尝试在UITableViewCell
中进行操作时,它不会剪切UIButton
的空白部分。我要做的是:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *simpleTableIdentifier = @"SearchCell";
SearchCell *cell = (SearchCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil) {
NSArray *nibArray = [[NSBundle mainBundle] loadNibNamed:@"SearchCell" owner:self options:nil];
cell = [nibArray objectAtIndex:0];
}
cell.btnSearchDetails.titleLabel.numberOfLines = 1;
cell.btnSearchDetails.titleLabel.adjustsFontSizeToFitWidth = YES;
cell.btnSearchDetails.titleLabel.lineBreakMode = NSLineBreakByClipping;
return cell;
}
可能是什么原因?