一个简单的小技巧,使的文字能够居上:
只要继承 UILabe,然后重写 drawTextInRect
方法,如下:
- (void)drawTextInRect:(CGRect)rect {
CGRect actualRect = [self textRectForBounds:rect
limitedToNumberOfLines:self.numberOfLines];
[super drawTextInRect:actualRect];
}
使用的时候只需要正常使用就好了~ (⁎⁍̴̛ᴗ⁍̴̛⁎)