盡量告別背景圖吧~

在開(kāi)發(fā)中废赞,我們會(huì)經(jīng)常給一些UIkit添加背景圖的需求,此時(shí)一般是UI給圖來(lái)用叮姑,隨著背景圖的越來(lái)越多唉地,導(dǎo)致app越來(lái)越大,而且有些相同的圖可能出現(xiàn)冗余,還有可能代碼刪了渣蜗,遺留的垃圾圖屠尊。其實(shí)很多作為背景圖都很簡(jiǎn)單,完全可以直接代碼繪制耕拷,如果UI能給一些通用的規(guī)范讼昆,可以封裝出來(lái)給其他人用,ok骚烧,進(jìn)入正題浸赫。

1、創(chuàng)建一個(gè)UIiamge的category赃绊,然后添加方法:

/*

獲得指定顏色 大小 邊角度 邊框顏色 邊框?qū)挾?的圖片

@param color 圖片顏色

@param targetSize 圖片大小

@param cornerRadius 圖片邊框的角度

@param borderColor 圖片邊框的顏色

@param ldCustomButtonStyle borderWidth 邊框?qū)挾?/p>

@return 指定圖片

*/

+ (UIImage *)ld_imageWithBackgroundColor:(UIColor *)color toSize:(CGSize)targetSize cornerRadius:(CGFloat)cornerRadius? borderColor:(UIColor *)borderColor borderWidth:(CGFloat)borderWidth {

UIGraphicsBeginImageContextWithOptions(targetSize, cornerRadius == 0, [UIScreen mainScreen].scale);

CGRect targetRect = (CGRect){0, 0, targetSize.width, targetSize.height};

UIImage *finalImage = nil;

CGContextRef context = UIGraphicsGetCurrentContext();

CGContextSetFillColorWithColor(context, [color CGColor]);

if (cornerRadius == 0) {

if (borderWidth > 0) {

CGContextSetStrokeColorWithColor(context, borderColor.CGColor);

CGContextSetLineWidth(context, borderWidth);

CGContextFillRect(context, targetRect);

targetRect = CGRectMake(borderWidth / 2, borderWidth / 2, targetSize.width - borderWidth, targetSize.height - borderWidth);

CGContextStrokeRect(context, targetRect);

} else {

CGContextFillRect(context, targetRect);

}

} else {

targetRect = CGRectMake(borderWidth / 2, borderWidth / 2, targetSize.width - borderWidth, targetSize.height - borderWidth);

UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:targetRect

byRoundingCorners:UIRectCornerAllCorners

cornerRadii:CGSizeMake(cornerRadius, cornerRadius)];

CGContextAddPath(UIGraphicsGetCurrentContext(), path.CGPath);

if (borderWidth > 0) {

CGContextSetStrokeColorWithColor(context, borderColor.CGColor);

CGContextSetLineWidth(context, borderWidth);

CGContextDrawPath(context, kCGPathFillStroke);

} else {

CGContextDrawPath(context, kCGPathFill);

}

}

finalImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

return finalImage;

}


大家可以去學(xué)習(xí)一下core graphics 既峡,上邊的代碼注釋寫(xiě)的很清楚了,就是產(chǎn)生一個(gè)背景圖碧查,基本滿(mǎn)足平時(shí)的背景圖需求运敢。

2、為UIkit控件設(shè)置背景圖忠售,這里以UIbutton為例:

假如UI給出了一個(gè)規(guī)范传惠,有兩種樣式的button:



我們可以封裝一個(gè)公共方法,給其他人用稻扬,創(chuàng)建一個(gè)UIbutton的Category:

typedef NS_ENUM(NSUInteger, LDCustomButtonStyle) {

LDCustomButtonDefaultStyle = 0 ,//默認(rèn)樣式 什么都沒(méi)設(shè)置

LDCustomButtonRBgWTxtStyle = 1, //紅底白字

LDCustomButtonWBgRTxtStyle = 2 ,//白底紅字紅邊框

};

@interface UIButton (LDCustom)

/**

根據(jù)樣式獲得不同樣式的按鈕

@param ldCustomButtonStyle 按鈕樣式

@return 指定樣式的按鈕

*/

+ (instancetype )ld_createButtonWithStyle:(LDCustomButtonStyle )ldCustomButtonStyle;


可以看到我們的接口沒(méi)有指定返回的按鈕大小卦方,怎么做到呢?

這里要用到泰佳,圖片拉伸的方法(自己谷歌吧):

- (void )setBackgroundColor:(UIColor *)backgroundColor? cornerRadius:(CGFloat)cornerRadius borderColor:(UIColor *)borderColor borderWidth:(CGFloat)borderWidth forState:(UIControlState)state {

UIImage *backgroundImg = [UIImage ld_imageWithBackgroundColor:backgroundColor? toSize:CGSizeMake(2*cornerRadius+1, 2*cornerRadius+1) cornerRadius:cornerRadius borderColor:borderColor borderWidth:borderWidth];

UIImage * stretchedImage = [backgroundImg resizableImageWithCapInsets:UIEdgeInsetsMake(cornerRadius, cornerRadius, cornerRadius ,cornerRadius) resizingMode:UIImageResizingModeStretch];

[self setBackgroundImage:stretchedImage forState:state];

}

首先創(chuàng)建一個(gè)size為(2*cornerRadius+1, 2*cornerRadius+1)大小的圖片盼砍,然后指定拉伸區(qū)域這樣就OK了,當(dāng)button大于圖片大小時(shí)逝她,會(huì)被拉伸中間區(qū)域浇坐,不影響邊框的展示。

最后我們?cè)偬峁┮粋€(gè)針對(duì)規(guī)范的接口給其他人用就好了:

+ (instancetype )ld_createButtonWithStyle:(LDCustomButtonStyle )ldCustomButtonStyle {

UIButton *customBtn = [UIButton buttonWithType:UIButtonTypeCustom];

switch (ldCustomButtonStyle) {

case LDCustomButtonDefaultStyle:

break;

case LDCustomButtonRBgWTxtStyle:

[customBtn setBackgroundColor:[UIColor ld_colorWithHex:0xfa4545]? cornerRadius:4.0 borderColor:[UIColor ld_colorWithHex:0xfa4545] borderWidth:0.5 forState:UIControlStateNormal];

[customBtn setTitleColor:[UIColor ld_colorWithHex:0xffffff] forState:UIControlStateNormal];

[customBtn setBackgroundColor:[UIColor ld_colorWithHex:0xc63737]? cornerRadius:4.0 borderColor:[UIColor ld_colorWithHex:0xc63737] borderWidth:0.5 forState:UIControlStateSelected];

[customBtn setTitleColor:[UIColor ld_colorWithHex:0xd55d5d] forState:UIControlStateSelected];

[customBtn setBackgroundColor:[UIColor ld_colorWithHex:0xc63737]? cornerRadius:4.0 borderColor:[UIColor ld_colorWithHex:0xc63737] borderWidth:0.5 forState:UIControlStateHighlighted];

[customBtn setTitleColor:[UIColor ld_colorWithHex:0xd55d5d] forState:UIControlStateHighlighted];

[customBtn setBackgroundColor:[UIColor ld_colorWithHex:0xfa4545] cornerRadius:4.0 borderColor:[UIColor ld_colorWithHex:0xfa4545] borderWidth:0.5 forState:UIControlStateDisabled];

[customBtn setTitleColor:[UIColor ld_colorWithHex:0xff9797] forState:UIControlStateDisabled];

break;

case LDCustomButtonWBgRTxtStyle:

[customBtn setBackgroundColor:[UIColor ld_colorWithHex:0xffffff] cornerRadius:4.0 borderColor:[UIColor ld_colorWithHex:0xfa4545] borderWidth:0.5 forState:UIControlStateNormal];

[customBtn setTitleColor:[UIColor ld_colorWithHex:0xfa4545] forState:UIControlStateNormal];

[customBtn setBackgroundColor:[UIColor ld_colorWithHex:0xfa4545]? cornerRadius:4.0 borderColor:[UIColor ld_colorWithHex:0xfa4545] borderWidth:0.5 forState:UIControlStateSelected];

[customBtn setTitleColor:[UIColor ld_colorWithHex:0xffffff] forState:UIControlStateSelected];

[customBtn setBackgroundColor:[UIColor ld_colorWithHex:0xfa4545]? cornerRadius:4.0 borderColor:[UIColor ld_colorWithHex:0xfa4545] borderWidth:0.5 forState:UIControlStateHighlighted];

[customBtn setTitleColor:[UIColor ld_colorWithHex:0xffffff] forState:UIControlStateHighlighted];

[customBtn setBackgroundColor:[UIColor ld_colorWithHex:0xfa4545]? cornerRadius:4.0 borderColor:[UIColor ld_colorWithHex:0xfa4545] borderWidth:0.5 forState:UIControlStateDisabled];

[customBtn setTitleColor:[UIColor ld_colorWithHex:0xff9797] forState:UIControlStateDisabled];

break;

default:

break;

}

return customBtn;

}

到此就可以了黔宛,以后用到規(guī)范的按鈕吗跋,直接調(diào)用這個(gè)方法就好了~ 代碼量也會(huì)明顯簡(jiǎn)潔~

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市宁昭,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌酗宋,老刑警劉巖积仗,帶你破解...
    沈念sama閱讀 211,123評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異蜕猫,居然都是意外死亡寂曹,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,031評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)隆圆,“玉大人漱挚,你說(shuō)我怎么就攤上這事∶煅酰” “怎么了旨涝?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,723評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)侣背。 經(jīng)常有香客問(wèn)我白华,道長(zhǎng),這世上最難降的妖魔是什么贩耐? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,357評(píng)論 1 283
  • 正文 為了忘掉前任弧腥,我火速辦了婚禮,結(jié)果婚禮上潮太,老公的妹妹穿的比我還像新娘管搪。我一直安慰自己,他們只是感情好铡买,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,412評(píng)論 5 384
  • 文/花漫 我一把揭開(kāi)白布更鲁。 她就那樣靜靜地躺著,像睡著了一般寻狂。 火紅的嫁衣襯著肌膚如雪岁经。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 49,760評(píng)論 1 289
  • 那天蛇券,我揣著相機(jī)與錄音缀壤,去河邊找鬼。 笑死纠亚,一個(gè)胖子當(dāng)著我的面吹牛塘慕,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播蒂胞,決...
    沈念sama閱讀 38,904評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼图呢,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了骗随?” 一聲冷哼從身側(cè)響起蛤织,我...
    開(kāi)封第一講書(shū)人閱讀 37,672評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎鸿染,沒(méi)想到半個(gè)月后指蚜,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,118評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡涨椒,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,456評(píng)論 2 325
  • 正文 我和宋清朗相戀三年摊鸡,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了绽媒。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,599評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡免猾,死狀恐怖是辕,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情猎提,我是刑警寧澤获三,帶...
    沈念sama閱讀 34,264評(píng)論 4 328
  • 正文 年R本政府宣布,位于F島的核電站忧侧,受9級(jí)特大地震影響石窑,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜蚓炬,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,857評(píng)論 3 312
  • 文/蒙蒙 一松逊、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧肯夏,春花似錦经宏、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,731評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至徊都,卻和暖如春沪斟,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背暇矫。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,956評(píng)論 1 264
  • 我被黑心中介騙來(lái)泰國(guó)打工主之, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人李根。 一個(gè)月前我還...
    沈念sama閱讀 46,286評(píng)論 2 360
  • 正文 我出身青樓槽奕,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親房轿。 傳聞我的和親對(duì)象是個(gè)殘疾皇子粤攒,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,465評(píng)論 2 348

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

  • // // JackDateAndDateView.m // ZHB // // Created by JackR...
    JackRen閱讀 404評(píng)論 0 1
  • 1、設(shè)置UILabel行間距 NSMutableAttributedString* attrString = [[...
    十年一品溫如言1008閱讀 1,630評(píng)論 0 3
  • //設(shè)置尺寸為屏幕尺寸的時(shí)候self.window = [[UIWindow alloc] initWithFra...
    LuckTime閱讀 797評(píng)論 0 0
  • 0210【動(dòng)待花開(kāi)】20171021 D11 拿出之前制作的字卡囱持,今天和小助手一起認(rèn)字夯接,今天我們要學(xué)"媽媽?zhuān)ⅰN覀?..
    芝麻_(kāi)mom閱讀 91評(píng)論 0 0
  • 誰(shuí)裂天河纷妆,墜星如雨钻蹬。蓮臺(tái)倒、萬(wàn)點(diǎn)鮫珠凭需,霓裳舞问欠、千枝紅羽。更哪堪粒蜈,脂染花黃顺献,粉褪雪縷。 雨過(guò)暗香織霧枯怖,菡萏滴露注整。蓮蓬...
    江南煙雨閱讀 212評(píng)論 0 1