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

首頁 > 學院 > 開發設計 > 正文

用TextKit實現表情,圖片,文字混排

2019-11-14 19:10:13
字體:
來源:轉載
供稿:網友

用Xcode以前本身自帶的coreText,coreImage,實現圖文混排,代碼量非常大,不容易理解,

而Textkit是iOS7新推出的類庫,其實是在之前推出的CoreText上的封裝, TextKit并沒有新增的類,他是在原有的文本顯示控件上的封裝,可以使用平時我們最喜歡使用的 UILabel,UITextField,UITextView里面就可以使用了。

 

   //傳你需要處理的文本內容

    NSString * str = @"nni-hao-textkit";

 

    //創建NSMutableAttributedString

    // 這是所有TextKit的載體,所有的信息都會輸入到NSAttributedString里面,然后將這個String輸入到Text控件里面就可以顯示了。    

    NSMutableAttributedString * attributed=[[NSMutableAttributedString alloc] initWithString:str];

    //給所有字符設置字體

    //給所有字符設置字體為Zapfino,字體為30

    [attributed addAttribute: NSFontAttributeName value: [UIFont fontWithName: @"Zapfino" size: 30]

                            range: NSMakeRange(0, str.length)];

    //分段控制,最開始4個字符顏色設置成黃色

    [attributed addAttribute: NSForegroundColorAttributeName value: [UIColor yellowColor] range: NSMakeRange(0, 4)];

    //分段控制,第5個字符開始的3個字符,即第5、6、7字符設置為紅色

    [attributed addAttribute: NSForegroundColorAttributeName value: [UIColor redColor] range: NSMakeRange(4, 3)];

    //創建UITextView來顯示

    UITextView * lable = [[UITextView allocinitWithFrame:self.view.bounds];

    lable.textAlignment = UITextAlignmentCenter;

    lable.attributedText = attributed;

    [self.view addSubview:lable];

   //控制臺顯示

                   

   //*********************************************************************************    

    //創建圖片附件

    NSTextAttachment *attach = [[NSTextAttachment alloc] init];

 

    attach.image = [UIImage imageNamed:@"3.jpg"];

    attach.bounds = CGRectMake(0, 70, 50, 50);

    

    NSAttributedString * attachstring = [NSAttributedString attributedStringWithAttachment:attach];

    

    [attributed appendAttributedString:attachstring];

   //控制臺顯示:

                             

   


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 康乐县| 澎湖县| 马鞍山市| 洛南县| 德钦县| 囊谦县| 丰台区| 余干县| 威信县| 大连市| 介休市| 博爱县| 仁怀市| 页游| 昌吉市| 民勤县| 共和县| 桂林市| 保靖县| 武安市| 琼中| 马尔康县| 富锦市| 自贡市| 洞头县| 丽水市| 闸北区| 天柱县| 甘孜| 西宁市| 贡山| 万载县| 西平县| 砀山县| 辽中县| 兴和县| 临朐县| 越西县| 红安县| 弥渡县| 阿拉善左旗|