UILabel用法】的更多相关文章

// UILabel -> UIView // UILabel用来显示文字内容 //创建一个Label,一般都直接通过initWithFrame确定位置跟大小 UILabel *lb = [[UILabel alloc]initWithFrame:CGRectMake(50, 80, 200, 200)]; //设置背景色,系统默认是白色背景 lb.backgroundColor = [UIColor grayColor]; //设置文字 lb.text = @"Application w…
iOS基础UI控件总结 iOS基础控件包括以下几类: 1.继承自NSObject:(暂列为控件) UIColor //颜色 UIImage //图像 2.继承自UIView: 只能相应手势UIGestureRecognizer事件,如果本身不响应会将事件action向superview传递 UILabel //文本展示 UIImageView //图像展示 UIAlertController //提醒对话框(UIAlertView已被苹果官方弃用) UIScrollView //滚动视图 UIP…
Label 中常用的方法属性 UILabel *label =[[UILabel alloc]initWithFrame:CGRectMake(90, 100, 140, 40)];//设置Label的大小 //label.text =@"loveLYD meixian";//1.设置Label的文本 NSString *sampleText = [NSString stringWithFormat:@"loveLYD meixian  but you should love…
1,标签的创建 1 2 3 4 5 6 7 8 9 10 import UIKit class ViewController: UIViewController {     override func viewDidLoad() {     super.viewDidLoad()     //设置标签x坐标:10,y坐标:20,长:300,宽:100     var label=UILabel(frame:CGRectMake(10,20, 300, 100))     label.text="…
要加载html字符串,用人说,直接用webView啊!但是,有时候我们只需要显示2行文字,如此少的内容却要在复杂的UI排版中加入一个占用资源较多的webview,得不偿失.这里要说的是,我们其实可以用label即可加载html字符的,用富文本转一下html字符串即可. //创建UILabel _Test_Lbl = [[UILabel alloc] initWithFrame:CGRectMake(10, 100, 200, 200)]; _Test_Lbl.backgroundColor =…
1.label的声明 class FirstyViewController: UIViewController { var label = UILabel()//初始化 override func viewDidLoad() { 2.背景颜色和文字颜色的设置及坐标设置 label.textColor=UIColor.white //白色文字 label.backgroundColor=UIColor.black //黑色背景label.frame = CGRect(x:10,y:70,width…
UILabel属性 1.text:设置标签显示文本. label.text = @"我是Label"; 2.attributedText:设置标签属性文本. NSString *text = @"first"; NSMutableAttributedString *textLabelStr = [[NSMutableAttributedString alloc] initWithString:text]; [textLabelStr setAttributes:@{…
//创建一个UILabel UILabel *label1 = [[UILabel alloc] initWithFrame:CGRectMake(50 , 100 , 200 , 560)]; //给label赋值内容 label1.text = @"我是一个label"; label1.backgroundColor = [UIColor cyanColor]; [contentView addSubview:label1]; //取出label里面的内容 NSLog(@"…
UILabel : UIView <NSCoding> 1.创建一个UILabel对象 UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(30, 30, 280, 60)]; 2.backgroundColor 背景颜色 3.text 显示的文本信息 eg:label.text = @"显示的文本信息"; 4.textColor 文本颜色 eg:label.textColor = [UIColor yello…
UILabel *_label = [[UILabel alloc]initWithFrame:CGRectMake(, self.view.frame.size.height*)]; _label.backgroundColor = [UIColor colorWithRed: green: blue: alpha:0.6]; _label.textColor = [UIColor whiteColor]; _label.layer.cornerRadius = ; _label.layer.…