国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開(kāi)發(fā)設(shè)計(jì) > 正文

想制作純色的UIButton嗎?來(lái),哥教你~

2019-11-14 19:52:28
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

因?yàn)轫?xiàng)目要做到美觀,加上扁平化設(shè)計(jì)這么流行,所以各種找資料.

原本想找找UIButton是否有直接的設(shè)置方法,卻發(fā)現(xiàn)沒(méi)有.找到點(diǎn)擊后高亮也只有setBackgroundImage 這條路走了.
首先寫(xiě)一個(gè)能改變大小,顏色,返回值為image的類方法.(我在網(wǎng)上找的...)
+ (UIImage *)imageWithColor:(UIColor *)color size:(CGSize)size {        CGRect rect = CGRectMake(0, 0, size.width, size.height);    UIGraphicsBeginImageContext(rect.size);        CGContextRef context = UIGraphicsGetCurrentContext();        CGContextSetFillColorWithColor(context, [color CGColor]);        CGContextFillRect(context, rect);    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();        UIGraphicsEndImageContext();        return image;    }
好吧,以下是我寫(xiě)的,與君分享:
+ (instancetype)buttonWithTitleAndColor:(NSString *)title frame:(CGRect)frame{
//必須是UIButtonTypeCustom,否則設(shè)置高亮不起作用
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];    [btn.layer setMasksToBounds:YES];    [btn.layer setCornerRadius:4.0]; //設(shè)置矩形四個(gè)圓角半徑//    [btn.layer setBorderWidth:1.0]; //邊框?qū)挾?   btn.frame = frame;    [btn setTitle:title forState:UIControlStateNormal];    [btn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
//ButtonBgColor與ButtonTouchBgColor是兩個(gè)UIColor顏色的宏定義,大家可以隨意定義.例如[UIColor blueColor];
    UIImage * bgImage1 = [self imageWithColor:ButtonBgColor size:frame.size];    UIImage * bgImage2 = [self imageWithColor:ButtonTouchBgColor size:frame.size];    [btn setBackgroundImage:bgImage1 forState:UIControlStateNormal];    [btn setBackgroundImage:bgImage2 forState:UIControlStateHighlighted];        return btn;}
大家也可以根據(jù)CAlayer的屬性和方法,自定義喜歡的UIButton樣式.
?

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 赤峰市| 永康市| 台南县| 启东市| 上虞市| 资中县| 广州市| 师宗县| 湖口县| 廊坊市| 伊金霍洛旗| 化隆| 略阳县| 新竹市| 合作市| 屯门区| 那坡县| 泽州县| 虹口区| 弥渡县| 马鞍山市| 林口县| 三台县| 楚雄市| 乌兰浩特市| 佛坪县| 米脂县| 嘉黎县| 新津县| 遂溪县| 镇巴县| 合作市| 越西县| 江西省| 遂川县| 阿拉善盟| 卢氏县| 施甸县| 工布江达县| 蒲城县| 蒲江县|