您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“iOS中Label如何實現(xiàn)顯示不同顏色與字體”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“iOS中Label如何實現(xiàn)顯示不同顏色與字體”這篇文章吧。
前言
iOS中Label是我們經(jīng)常遇到的一個控件,我們大家應該都會簡單的使用它,像下面這個代碼,就能簡單的創(chuàng)建一個label
// 1、創(chuàng)建 CGRectrect =CGRectMake(100,100,100,100); UILabel* label = [[UILabelalloc]initWithFrame:rect];
引言
然而我們在開發(fā)中,經(jīng)常會遇到一行字,但是顯示不同顏色和字體的情況,話不多說,直接上代碼。
1、顯示不同顏色,有兩種方式
(1)通過 range 來設置
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"點擊代表您已閱讀并同意用戶規(guī)則和協(xié)議"]; [str addAttribute:NSForegroundColorAttributeName value:[UIColor orangeColor] range:NSMakeRange(0,11)]; [str addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(11,4)]; [str addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(16,2)]; label.attributedText = str;
(2)通過文字來設置
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"點擊代表您已閱讀并同意用戶規(guī)則和協(xié)議"]; NSRange range1 = [[str string] rangeOfString:@"點擊代表您已閱讀并同意"]; [str addAttribute:NSForegroundColorAttributeName value:[UIColor orangeColor] range:range1]; NSRange range2 = [[str string] rangeOfString:@"用戶規(guī)則"]; [str addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:range2]; NSRange range3 = [[str string] rangeOfString:@"協(xié)議"]; [str addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:range3]; label.attributedText = str;
以上兩種的效果一樣,如圖:
2、顯示不同字體,也是兩種方式
(1)通過 range 來設置
[str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Arial-BoldItalicMT" size:13.0] range:NSMakeRange(0, 11)]; [str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"HelveticaNeue-Bold" size:14.0] range:NSMakeRange(11, 4)]; [str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Courier-BoldOblique" size:14.0] range:NSMakeRange(16, 2)]; label.attributedText = str;
(2)通過文字來設置
NSRange range1 = [[str string] rangeOfString:@"點擊代表您已閱讀并同意"]; [str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Arial-BoldItalicMT" size:13.0] range:range1]; NSRange range2 = [[str string] rangeOfString:@"用戶規(guī)則"]; [str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"HelveticaNeue-Bold" size:14.0] range:range2]; NSRange range3 = [[str string] rangeOfString:@"協(xié)議"]; [str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Courier-BoldOblique" size:14.0] range:range3]; label.attributedText = str;
以上兩種方式效果圖如下:
以上是“iOS中Label如何實現(xiàn)顯示不同顏色與字體”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。