设为首页 加入收藏

TOP

【代码笔记】iOS-图文混排(HBLabelDemo)
2017-10-13 10:23:33 】 浏览:8767
Tags:代码 笔记 iOS- 图文 HBLabelDemo

一,效果图。

二,工程图。

三,代码。

ViewController.h

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController


@end

 

ViewController.m

复制代码
#import "ViewController.h"
//加入头文件
#import "HBLabel.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    HBLabel * label=[[HBLabel alloc]initWithFrame:CGRectMake(50, 50, 200, 30)];
    [label setTextAndIcon:@"[月亮]这是HBLabel的测试[转圈][发怒][抠鼻]这是HBLabel的测试[傲慢][得意][吐][弱]这是HBLabel的测试[晕][擦汗]"];
    label.font=[UIFont systemFontOfSize:14];
    [self.view addSubview:label];
}
复制代码

 

 

 
 
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇iOS 多线程GCD简介 下一篇iOS 开发工具

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目