UILabel 擴(kuò)展NSTextAlignment

  • github地址https://github.com/Charming04/UILabel-TextAlignmentExpand
  • 首先要了解UILabel的用來設(shè)置和顯示內(nèi)部文本的方法未玻,只需根據(jù)textAlignment的值藻雌,來動態(tài)的修改textRect的位置來達(dá)到目的(下面是UILabel需要重寫的兩個主要方法)
/** 返回UILabel中內(nèi)容所占的rect*/
-(CGRect)textRectForBounds:(CGRect)bounds limitedToNumberOfLines:(NSInteger)numberOfLines;
/** 在一定區(qū)域內(nèi)顯示出來UILabel的內(nèi)容*/
-(void)drawTextInRect:(CGRect)rect;
  • 使用起來最簡單的方式就是為UILabel寫個分類鸭限,這就需要runtime的一些知識(通過類別實現(xiàn)的關(guān)鍵就是要通過自定的方法與UILabel中的方法進(jìn)行交換茁帽,來達(dá)到方法的override效果)
/** 獲取某個類中的某個方法*/
OBJC_EXPORT Method class_getInstanceMethod(Class cls, SEL name);
/** 交換兩個方法*/
OBJC_EXPORT void method_exchangeImplementations(Method m1, Method m2) 
  • 下面是對UILbel分類具體的實現(xiàn)
#import <UIKit/UIKit.h>
/* Values for NSTextAlignmentExpand */
typedef NS_ENUM(NSInteger, NSTextAlignmentExpand) {
    NSTextAlignmentTop           = 5,     // Visually top aligned
    NSTextAlignmentBottom        = 6,     // Visually bottom aligned
    NSTextAlignmentLeftTop       = 7,     // Visually left and top aligned
    NSTextAlignmentRightTop      = 8,     // Visually right and top aligned
    NSTextAlignmentLeftBottom    = 9,     // Visually left and bottom aligned
    NSTextAlignmentRightBottom   = 10,    // Visually right and bottom aligned
} NS_ENUM_AVAILABLE_IOS(6_0);
@interface UILabel (LMTextAlignmentAdditions)
@end
#import "LMUILabel+TextAlignment.h"
#import <objc/runtime.h>

@implementation UILabel (LMTextAlignmentAdditions)

+(void)load {
    
    /** 獲取原始的 textRectForBounds:limitedToNumberOfLines:方法*/
    
    Method originalTextRectForBounds = class_getInstanceMethod([self class], @selector(textRectForBounds:limitedToNumberOfLines:));
    Method exchageTextRectForBounds = class_getInstanceMethod([self class], @selector(lm_textRectForBounds:limitedToNumberOfLines:));
    method_exchangeImplementations(originalTextRectForBounds, exchageTextRectForBounds);
    
    /** 獲取原始的 drawTextInRect:方法*/
    
    Method originalDrawTextInRect = class_getInstanceMethod([self class], @selector(drawTextInRect:));
    Method exchageDrawTextInRect = class_getInstanceMethod([self class], @selector(lm_drawTextInRect:));
    method_exchangeImplementations(originalDrawTextInRect, exchageDrawTextInRect);
    
}

- (CGRect)lm_textRectForBounds:(CGRect)bounds limitedToNumberOfLines:(NSInteger)numberOfLines {
    
    /** 先調(diào)用系統(tǒng)的textRect...方法*/
    CGRect textRect = [self lm_textRectForBounds:bounds limitedToNumberOfLines:numberOfLines];
    
    switch ((NSTextAlignmentExpand)self.textAlignment) {
        case NSTextAlignmentTop:
            textRect.origin.y = bounds.origin.y;
            textRect.origin.x = 0.5 *(bounds.size.width - textRect.size.width);
            break;
        case NSTextAlignmentLeftTop:
            textRect.origin.y = bounds.origin.y;
            break;
        case NSTextAlignmentRightTop:
            textRect.origin.y = bounds.origin.y;
            textRect.origin.x = bounds.size.width - textRect.size.width;
            break;
        case NSTextAlignmentBottom:
            textRect.origin.y = bounds.origin.y + bounds.size.height - textRect.size.height;
            textRect.origin.x = 0.5 *(bounds.size.width - textRect.size.width);
            break;
        case NSTextAlignmentLeftBottom:
            textRect.origin.y = bounds.origin.y + bounds.size.height - textRect.size.height;
            break;
        case NSTextAlignmentRightBottom:
            textRect.origin.y = bounds.origin.y + bounds.size.height - textRect.size.height;
            textRect.origin.x = bounds.size.width - textRect.size.width;
            break;
        default:
            textRect.origin.y = bounds.origin.y + (bounds.size.height - textRect.size.height) / 2.0;
    }
    return textRect;
}

-(void)lm_drawTextInRect:(CGRect)requestedRect {
    
    /** 相當(dāng)于調(diào)用lm_textRect...方法*/
    CGRect actualRect = [self textRectForBounds:requestedRect limitedToNumberOfLines:self.numberOfLines];
    
    /** 后調(diào)用系統(tǒng)的drawTextInRect:方法*/
    [self lm_drawTextInRect:actualRect];
}
@end
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市巡蘸,隨后出現(xiàn)的幾起案子畅蹂,更是在濱河造成了極大的恐慌童漩,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件沟蔑,死亡現(xiàn)場離奇詭異湿诊,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)瘦材,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進(jìn)店門厅须,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人宇色,你說我怎么就攤上這事九杂。” “怎么了宣蠕?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵例隆,是天一觀的道長。 經(jīng)常有香客問我抢蚀,道長镀层,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任皿曲,我火速辦了婚禮唱逢,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘屋休。我一直安慰自己坞古,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布劫樟。 她就那樣靜靜地躺著痪枫,像睡著了一般。 火紅的嫁衣襯著肌膚如雪叠艳。 梳的紋絲不亂的頭發(fā)上奶陈,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天,我揣著相機(jī)與錄音附较,去河邊找鬼吃粒。 笑死,一個胖子當(dāng)著我的面吹牛拒课,可吹牛的內(nèi)容都是我干的徐勃。 我是一名探鬼主播事示,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼疏旨!你這毒婦竟也來了很魂?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤檐涝,失蹤者是張志新(化名)和其女友劉穎遏匆,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體谁榜,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡幅聘,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了窃植。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片帝蒿。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖巷怜,靈堂內(nèi)的尸體忽然破棺而出葛超,到底是詐尸還是另有隱情,我是刑警寧澤延塑,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布绣张,位于F島的核電站,受9級特大地震影響关带,放射性物質(zhì)發(fā)生泄漏侥涵。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一宋雏、第九天 我趴在偏房一處隱蔽的房頂上張望芜飘。 院中可真熱鬧,春花似錦磨总、人聲如沸嗦明。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽招狸。三九已至,卻和暖如春邻薯,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背乘凸。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工厕诡, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人营勤。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓灵嫌,卻偏偏與公主長得像壹罚,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子寿羞,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內(nèi)容