這篇文章主要為大家展示了“iOS中Label如何實現顯示不同顏色與字體”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“iOS中Label如何實現顯示不同顏色與字體”這篇文章吧。
成都創(chuàng)新互聯公司是一家專業(yè)提供瀏陽企業(yè)網站建設,專注與成都網站設計、成都網站建設、HTML5建站、小程序制作等業(yè)務。10年已為瀏陽眾多企業(yè)、政府機構等服務。創(chuàng)新互聯專業(yè)網站制作公司優(yōu)惠進行中。
前言
iOS中Label是我們經常遇到的一個控件,我們大家應該都會簡單的使用它,像下面這個代碼,就能簡單的創(chuàng)建一個label
// 1、創(chuàng)建 CGRectrect =CGRectMake(100,100,100,100); UILabel* label = [[UILabelalloc]initWithFrame:rect];
引言
然而我們在開發(fā)中,經常會遇到一行字,但是顯示不同顏色和字體的情況,話不多說,直接上代碼。
1、顯示不同顏色,有兩種方式
(1)通過 range 來設置
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"點擊代表您已閱讀并同意用戶規(guī)則和協議"]; [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ī)則和協議"]; 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:@"協議"]; [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:@"協議"]; [str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Courier-BoldOblique" size:14.0] range:range3]; label.attributedText = str;
以上兩種方式效果圖如下:
以上是“iOS中Label如何實現顯示不同顏色與字體”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注創(chuàng)新互聯行業(yè)資訊頻道!
當前題目:iOS中Label如何實現顯示不同顏色與字體
瀏覽路徑:http://vcdvsql.cn/article38/pehppp.html
成都網站建設公司_創(chuàng)新互聯,為您提供外貿網站建設、網站策劃、品牌網站設計、定制開發(fā)、網站設計、Google
聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯