真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

iOS中如何切圓角

這篇文章給大家分享的是有關(guān)iOS中如何切圓角的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

成都創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),鹽都企業(yè)網(wǎng)站建設(shè),鹽都品牌網(wǎng)站建設(shè),網(wǎng)站定制,鹽都網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷(xiāo),網(wǎng)絡(luò)優(yōu)化,鹽都網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M(mǎn)足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專(zhuān)業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶(hù)成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。

前言

圓角(RounderCorner)是一種很常見(jiàn)的視圖效果,相比于直角,它更加柔和優(yōu)美,易于接受。但很多人并不清楚如何設(shè)置圓角的正確方式和原理。

iOS 客戶(hù)端開(kāi)發(fā)中,經(jīng)常碰到圓角視圖的需求,本文簡(jiǎn)單總結(jié)一下 UIView 及其子類(lèi)的一些切圓角方法,并且保證避免出現(xiàn)離屏渲染。

UIView(不包括其子類(lèi))

UIView *view = [[UIView alloc] init];
view.backgroundColor = [UIColor blackColor];
view.layer.cornerRadius = 3.f;
// 以下兩行,任寫(xiě)一行
view.layer.masksToBounds = NO;
view.clipToBounds = NO;
// 以下兩行,千萬(wàn)不要加!
view.layer.masksToBounds = YES;
view.clipToBounds = YES;

注意點(diǎn):UIView 只要設(shè)置圖層的 cornerRadius 屬性即可(不明白的話(huà),可以看看官方文檔里對(duì) cornerRadius 的描述),如果設(shè)置 layer.masksToBounds = YES ,會(huì)造成不必要的離屏渲染。

文本類(lèi)視圖

UITextField

UITextField有兩種實(shí)現(xiàn)方法

// 天然支持設(shè)置圓角邊框
UITextField *textField = [[UITextField alloc] init];
textField.borderStyle = UITextBorderStyleRoundedRect;
// 與 UIView 類(lèi)似
UITextField *textField = [[UITextField alloc] init];
textField.layer.cornerRadius = cornerRadius;

UITextView

// 與 UIView 類(lèi)似
UITextView *textView = [[UITextView alloc] init];
textView.layer.cornerRadius = cornerRadius;

UILabel

UILabel *label = [[UILabel alloc] init];
// 重點(diǎn)在此!!設(shè)置視圖的圖層背景色,千萬(wàn)不要直接設(shè)置 label.backgroundColor
label.layer.backgroundColor = [UIColor grayColor].CGColor;
label.layer.cornerRadius = cornerRadius;

其它

UIButton

說(shuō)明:UIButton 的背景圖片,如果是復(fù)雜的圖片,可以依靠 UI 切圖來(lái)實(shí)現(xiàn)。如果是簡(jiǎn)單的純色背景圖片,可以利用代碼繪制帶圓角的圖片。

UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
// 設(shè)置 UIButton 的背景圖片。
[button setBackgroundImage:image forState:UIControlStateNormal];

背景圖片繪制方法

+ (UIImage *)pureColorImageWithSize:(CGSize)size color:(UIColor *)color cornRadius:(CGFloat)cornRadius {
 UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, size.width, size.height)];
 view.backgroundColor = color;
 view.layer.cornerRadius = cornerRadius;
 // 下面方法,第一個(gè)參數(shù)表示區(qū)域大小。第二個(gè)參數(shù)表示是否是非透明的。如果需要顯示半透明效果,需要傳NO,否則傳YES。第三個(gè)參數(shù)是屏幕密度
 UIGraphicsBeginImageContextWithOptions(view.bounds.size, NO, [UIScreen mainScreen].scale);
 [view.layer renderInContext:UIGraphicsGetCurrentContext()];
 UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
 UIGraphicsEndImageContext();
 return image;
}

UIImageView

UIImageView 有四種方式實(shí)現(xiàn)圓角:

截取圖片方式(性能較好,基本不掉幀)

@implementation UIImage (extend)
- (UIImage *)drawRectWithRoundedCorner
{
 CGRect rect = CGRectMake(0.f, 0.f, 150.f, 150.f); 
 UIBezierPath *bezierPath = [UIBezierPath bezierPathWithRoundedRect:rect cornerRadius:rect.size.width * 0.5];
 UIGraphicsBeginImageContextWithOptions(rect.size, false, [UIScreen mainScreen].scale);
 CGContextAddPath(UIGraphicsGetCurrentContext(), bezierPath.CGPath);
 CGContextClip(UIGraphicsGetCurrentContext());
 [self drawInRect:rect];
 CGContextDrawPath(UIGraphicsGetCurrentContext(), kCGPathFillStroke);
 UIImage *output = UIGraphicsGetImageFromCurrentImageContext();
 UIGraphicsEndImageContext(); 
 return output;
}
@end

貝塞爾曲線(xiàn)切割圓角(不推薦,掉幀嚴(yán)重)

- (UIImageView *)roundedRectImageViewWithCornerRadius:(CGFloat)cornerRadius {
 UIBezierPath *bezierPath = [UIBezierPath bezierPathWithRoundedRect:self.bounds cornerRadius:cornerRadius];
 CAShapeLayer *layer = [CAShapeLayer layer];
 layer.path = bezierPath.CGPath;
 self.layer.mask = layer;
 return self;
}

繪制四個(gè)角的遮罩(使用場(chǎng)景受限)

在 UIImageView 上添加一個(gè)四個(gè)角有內(nèi)容,其它部分是透明的視圖,只對(duì) UIImageView 圓角部分進(jìn)行遮擋。但要保證被遮擋的部分背景色要與周?chē)尘跋嗤?,避免穿幫。所以?dāng) UIImageView 處于一個(gè)復(fù)雜的背景時(shí),是不適合使用這個(gè)方法的。

最不推薦做法(當(dāng)一個(gè)頁(yè)面只有少量圓角圖片時(shí)才推薦使用)

UIImageView *imageView = [[UIImageView alloc] init];
imageView.layer.cornerRadius = 5.f;
imageView.layer.masksToBounds = YES;

感謝各位的閱讀!關(guān)于“iOS中如何切圓角”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!


網(wǎng)頁(yè)標(biāo)題:iOS中如何切圓角
標(biāo)題URL:http://weahome.cn/article/pdsisj.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部