亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

iOS 按鈕上的文字添加下劃線的方法

 更新時間:2016年05月04日 10:58:27   作者:wusang  
這篇文章主要介紹了iOS 按鈕上的文字添加下劃線的方法的相關資料,需要的朋友可以參考下

問題:實現(xiàn)下圖中右側的按鈕文字效果

方法:

[MyTools createMyImageview:topEditView frame:CGRectMake(widthAll-90, 12, 17, 16) imageName:@"離線課程_下載更多.png"];
UIButton *downMoreButton = [MyTools createMyBtn:@"下載更多" frame:CGRectMake(widthAll-70, 10, 60, 20) uiview:topEditView uifont:14 color:[UIColor colorWithRed:92/255.0 green:218/255.0 blue:231/255.0 alpha:1]];
NSMutableAttributedString *title = [[NSMutableAttributedString alloc] initWithString:@"下載更多"];
NSRange titleRange = {0,[title length]};
[title addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleSingle] range:titleRange];
[downMoreButton setAttributedTitle:title
forState:UIControlStateNormal];
[downMoreButton.titleLabel setFont:[UIFont systemFontOfSize:14]];
[downMoreButton addTarget:self action:@selector(downMore) forControlEvents:UIControlEventTouchUpInside];

關于iOS 按鈕上的文字添加下劃線的方法就給大家介紹到這里,希望對大家有所幫助!

相關文章

最新評論