@interface ThreadPreviewCell : UITableViewCell @property (nonatomic, strong) UILabel *titleLabel; @end @implementation ThreadPreviewCell - (void)layoutSubviews{ [super layoutSubviews]; //ios6中須要加上這句話 self.titleLabel.preferredMaxLayoutWidth = self.titleLabel.bounds.size.width; } - (void)initSubviews { self.titleLabel = [[UILabel alloc]init]; self.titleLabel.numberOfLines = 0; self.titleLabel.lineBreakMode = NSLineBreakByWordWrapping; self.titleLabel.font = [UIFont systemFontOfSize:14]; self.titleLabel.backgroundColor = [UIColor clearColor]; [self.contentView addSubview:self.titleLabel]; } @end
表現爲在iOS7以上的系統中,UILabel可以自動換行,多行顯示的字符串,而在iOS6上面則不會自動換行,直接打省略號。php
正常狀況下,numberOfLines設置爲0,UILabel就會自動換行了。html
可是在iOS6下面須要設置preferredMaxLayoutWidth,autolayout纔會判斷到折行的位置,才能正確的顯示多行的UILabelios
可是preferredMaxLayoutWidth設置爲多少纔是正確的呢?app
若是你知道一個確切的width固然是最好的,那麼直接設置便可,ui
可是若是UILabel的寬度是自適應的,不肯定,那麼能夠使用以上的代碼設置atom