用CATextLayer來實現一個(gè)UILabel - 新聞資(zī)訊 - 雲南小程序開發|雲南軟件開發|雲南網站(zhàn)建設-西山區知普網絡科技工作室

159-8711-8523

雲南網建設/小程序開發/軟件開發

知識

不管是網站(zhàn),軟件還是小程序,都要直接或間接能為您産生價值,我們在追求其視覺表現的同時,更側重于功能的便捷,營銷的便利,運營的高效,讓網站(zhàn)成為營銷工具,讓軟件能切實提升企業(yè)内部管理水平和(hé)效率。優秀的程序為後期升級提供便捷的支持!

您當前位置>首頁 » 新聞資(zī)訊 » 技術(shù)分享 >

用CATextLayer來實現一個(gè)UILabel

發表時間:2020-10-19

發布人:葵宇科技

浏覽次數:36

用CATextLayer來實現一個(gè)UILabel


by 伍雪(xuě)穎
[img]http://img.blog.csdn.net/20150104212858888?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvcmFpbmxlc3Zpbw==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center
    CATextLayer *textLayer = [CATextLayerlayer];
    textLayer.frame =CGRectMake(100,100,100,100);
    [self.view.layeraddSublayer:textLayer];
   
    textLayer.foregroundColor = [UIColorblackColor].CGColor;
    textLayer.alignmentMode =kCAAlignmentJustified;
    textLayer.wrapped =YES;
   
    UIFont *font = [UIFontsystemFontOfSize:15];
   
    CFStringRef fontName = (__bridgeCFStringRef)font.fontName;
    CGFontRef fontRef =CGFontCreateWithFontName(fontName);
    textLayer.font = fontRef;
    textLayer.fontSize = font.pointSize;
    CGFontRelease(fontRef);
   
    NSString *text =@"Cupid laid by his brand, and fell asleep";
   
    textLayer.string = text;


    textLayer.contentsScale = [UIScreen mainScreen].scale; // 在Retina顯示

相關(guān)案例查看更多