CALayer及其子類(一)

CALayer及其子類CAShapeLayer, CATextLayer用來展示圖片,文本,富文本,繪圖等, 完全可以替代UIImageView,UILabel等常用控件

-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    
    //layer展示圖片
    CALayer *layerTemp = [CALayer layer];
    layerTemp.frame = CGRectMake(80, 100, 20, 20);
    [self.view.layer addSublayer:layerTemp];
    layerTemp.contents = (id)[UIImage imageNamed:@"common_icon_msg_error"].CGImage;
    
    CALayer *layerTemp2 = [CALayer layer];
    layerTemp2.frame = CGRectMake(80, 150, 60, 64);
    [self.view.layer addSublayer:layerTemp2];
    layerTemp2.contents = (id)[UIImage imageNamed:@"analysis_cup"].CGImage;
    
    //繪圖
    CAShapeLayer * shapeLayer = [CAShapeLayer layer];
    CGMutablePathRef path = CGPathCreateMutable();
    CGPathMoveToPoint(path,nil,0.0,0);
    CGPathAddLineToPoint(path,nil,0.0,CGRectGetHeight(self.view.bounds)/2);
    shapeLayer.path = path;
    shapeLayer.bounds = CGRectMake(0,0,5.0,CGRectGetHeight(self.view.bounds)/2);
    shapeLayer.anchorPoint = CGPointMake(0.5, 0.5);
    shapeLayer.position = CGPointMake(CGRectGetMidX(self.view.bounds)+100,CGRectGetMidY(self.view.bounds));
    shapeLayer.lineWidth = 5.0;
    shapeLayer.lineCap = kCALineCapRound;
    shapeLayer.strokeColor = [UIColor colorWithRed:0.153 green:1.000 blue:0.460 alpha:1.000].CGColor;
    [self.view.layer addSublayer:shapeLayer];
    
    //文本展示
    if (/* DISABLES CODE */ (1)) {//富文本
        CATextLayer * textLayer = [CATextLayer layer];
        NSString * text = @"今天天氣好晴朗,嘿!處處百花香,嘿嘿嘿!!!明天星期二,后天就是星期三,再有兩天就又放假咯!吼吼吼~~~";
        NSMutableAttributedString *attrStr = [[NSMutableAttributedString alloc] initWithString:text];
        NSDictionary *attributeDict = @{NSFontAttributeName: [UIFont systemFontOfSize:18.0],
                                        NSForegroundColorAttributeName: [UIColor redColor]};
        NSDictionary *attributeDict1 = @{NSFontAttributeName: [UIFont systemFontOfSize:23.0],
                                         NSForegroundColorAttributeName: [UIColor colorWithRed:0.130 green:0.854 blue:0.345 alpha:1.000]};
        [attrStr setAttributes:attributeDict1 range:NSMakeRange(0, 7)];
        [attrStr setAttributes:attributeDict range:NSMakeRange(7, attrStr.length -7)];
        textLayer.string = attrStr;
        
        //給圖層加邊框
        textLayer.borderColor = [UIColor colorWithRed:0.193 green:0.607 blue:1.000 alpha:1.000].CGColor;
        textLayer.borderWidth = 0.5;
        
        //圖層的大小(寬度固定根據(jù)文字定高度)
        CGRect strRect = [attrStr boundingRectWithSize:CGSizeMake(150, MAXFLOAT) options:(NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesFontLeading) context:nil];
        textLayer.bounds = CGRectMake(0, 0, strRect.size.width, strRect.size.height + 5);//文本大小,默認(rèn)是0
        textLayer.alignmentMode = @"center";//文字對(duì)齊方式
        textLayer.wrapped = YES;//是否折行,默認(rèn)是no
        textLayer.contentsScale = [UIScreen mainScreen].scale;//清晰度
        textLayer.position = CGPointMake(100,350);//位置
        [self.view.layer addSublayer:textLayer];
        
    } else {//非富文本
        
        CATextLayer * textLayer = [CATextLayer layer];
        NSString * text = @"今天天氣好晴朗,嘿!處處百花香,嘿嘿嘿!!!明天星期二,后天就是星期三,再有兩天就又放假咯!吼吼吼~~~";
        textLayer.string = text;
        textLayer.alignmentMode = @"center";//文字對(duì)齊方式
        
        //字體 (僅限于非富文本才能用)
        UIFont *fontTemp = [UIFont fontWithName:@"Heiti SC" size:18];
        CFStringRef fontName = (__bridge CFStringRef)fontTemp.fontName;
        textLayer.font = CGFontCreateWithFontName(fontName);
        textLayer.fontSize = fontTemp.pointSize;
        
        //圖層的大小(寬度固定根據(jù)文字定高度)
        CGRect strRect = [text boundingRectWithSize:CGSizeMake(150, MAXFLOAT) options:(NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesFontLeading) attributes:@{NSFontAttributeName : fontTemp} context:nil];
        textLayer.bounds = CGRectMake(0, 0, strRect.size.width, strRect.size.height + 5);//文本大小,默認(rèn)是0
        
        //給圖層加邊框
        textLayer.borderColor = [UIColor colorWithRed:0.193 green:0.607 blue:1.000 alpha:1.000].CGColor;
        textLayer.borderWidth = 0.5;
        
        //字體顏色(僅限于非富文本才能用)
        textLayer.foregroundColor = [UIColor colorWithRed:0.150 green:0.301 blue:0.791 alpha:1.000].CGColor;
        textLayer.wrapped = YES;//是否折行,默認(rèn)是no
        textLayer.contentsScale = [UIScreen mainScreen].scale;//清晰度
        textLayer.position = CGPointMake(100,350);
        [self.view.layer addSublayer:textLayer];
    }
    
}
CALayer展示圖片一

CALayer展示圖片二

CATextLayer展示富文本

CATextLayer展示普通文本

CAShapeLayer繪圖
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末蜂筹,一起剝皮案震驚了整個(gè)濱河市纫塌,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌罗洗,老刑警劉巖坡脐,帶你破解...
    沈念sama閱讀 210,978評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異蕴忆,居然都是意外死亡巡李,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來俐末,“玉大人,你說我怎么就攤上這事∈臧埽” “怎么了?”我有些...
    開封第一講書人閱讀 156,623評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵迁央,是天一觀的道長掷匠。 經(jīng)常有香客問我,道長岖圈,這世上最難降的妖魔是什么讹语? 我笑而不...
    開封第一講書人閱讀 56,324評(píng)論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮蜂科,結(jié)果婚禮上顽决,老公的妹妹穿的比我還像新娘。我一直安慰自己导匣,他們只是感情好才菠,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,390評(píng)論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著贡定,像睡著了一般赋访。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上缓待,一...
    開封第一講書人閱讀 49,741評(píng)論 1 289
  • 那天蚓耽,我揣著相機(jī)與錄音,去河邊找鬼旋炒。 笑死步悠,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的瘫镇。 我是一名探鬼主播鼎兽,決...
    沈念sama閱讀 38,892評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼答姥,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了接奈?” 一聲冷哼從身側(cè)響起踢涌,我...
    開封第一講書人閱讀 37,655評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎序宦,沒想到半個(gè)月后睁壁,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,104評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡互捌,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評(píng)論 2 325
  • 正文 我和宋清朗相戀三年潘明,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片秕噪。...
    茶點(diǎn)故事閱讀 38,569評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡钳降,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出腌巾,到底是詐尸還是另有隱情遂填,我是刑警寧澤,帶...
    沈念sama閱讀 34,254評(píng)論 4 328
  • 正文 年R本政府宣布澈蝙,位于F島的核電站吓坚,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏灯荧。R本人自食惡果不足惜礁击,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,834評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望逗载。 院中可真熱鬧哆窿,春花似錦、人聲如沸厉斟。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽捏膨。三九已至秧均,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間号涯,已是汗流浹背目胡。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評(píng)論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留链快,地道東北人誉己。 一個(gè)月前我還...
    沈念sama閱讀 46,260評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像域蜗,于是被迫代替她去往敵國和親巨双。 傳聞我的和親對(duì)象是個(gè)殘疾皇子噪猾,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,446評(píng)論 2 348

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

  • 復(fù)雜的組織都是專門化的Catharine R. Stimpson 到目前為止,我們已經(jīng)探討過CALayer類了筑累,同...
    雪_晟閱讀 483評(píng)論 0 0
  • 本文轉(zhuǎn)載自:http://www.cocoachina.com/ios/20150105/10827.html 為...
    idiot_lin閱讀 511評(píng)論 0 1
  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫袱蜡、插件、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 12,058評(píng)論 4 62
  • 7月7日一大早慢宗,侄女和鐘潔就起床去趕飛機(jī)坪蚁,我一個(gè)人睡到中午起床,然后換房間镜沽。 下午在西寧火車站附近找了一家東北餃子...
    Yoyo袁閱讀 135評(píng)論 2 1
  • 昨天那么晚敏晤,辛苦了。你肯定在睡大覺缅茉、想做飯給你吃嘴脾,等你醒來,有飯吃蔬墩,幻想ing… 我早起洗了衣服译打,平安神宮那邊走了...
    WoodSage閱讀 179評(píng)論 0 1