程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-修改 Cell.TextLabel 寬度

ios-修改 Cell.TextLabel 寬度

編輯:編程綜合問答
修改 Cell.TextLabel 寬度

我要修改textlabel的cell寬度。因為它和我的按鈕重疊了/

代碼如下,但是這樣刪除了cell分割線:

@interface CustomTableViewCell : UITableViewCell
@end

@implementation CustomTableViewCell

- (void)layoutSubviews
{
    CGRect textLabelFrame = self.textLabel.frame;

    textLabelFrame.size.width=250.0f;
    self.textLabel.frame = textLabelFrame;
}

最佳回答:


既然使用了自定義的uitableviewcell就不如自己添加一個uilabel控件到cell上,這樣做的好處是你可以對個uilabel進行自由的設置,如控制寬度,以避免被另外的按鈕遮住。

@property (nonatomic,strong) NSString *title
- (void)layoutSubviews
{
    UILabel *lblTitle=[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 0, 0)];
    [lblTitle setTextColor:[UIColor blackColor]];
    [lblTitle setFont:[UIFont fontWithName:DEFAULTFONTNAME size:13]];
    [lblTitle setNumberOfLines:0];
    [lblTitle setLineBreakMode:UILineBreakModeWordWrap];
    [lblTitle setText:_title];
    [lblTitle setBackgroundColor:[UIColor clearColor]];

    CGSize lblSize=[lblTitle.text sizeWithFont:lblTitle.font constrainedToSize:CGSizeMake(self.bounds.size.width-30, 250) lineBreakMode:UILineBreakModeWordWrap];

    [lblTitle setFrame:CGRectMake(5,(self.bounds.size.height-lblSize.height)/2, lblSize.width,lblSize.height)];

    [self addSubview:lblTitle];
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved