【代码笔记】iOS-图文混排(HBLabelDemo)

来源:互联网 发布:sata数据转移线 编辑:程序博客网 时间:2024/06/16 15:50

一,效果图。

二,工程图。

三,代码。

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];}
复制代码

 


0 1
原创粉丝点击