UILabel基本用法】的更多相关文章

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 UILabel *label1 = [[UILabel alloc] initWithFrame:CGRectMake(50 , 100 , 200 , 560)]; //给label赋值内容 label1.text = @"我是一个label"; label1.backgroundColor = [UIColor cyanColor]; [contentView addSubview:label1]; //取出label里面的内容 NSLog(@"…
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.…
UILabel 一般用来显示文本内容. 常用的属性如下: @property(nonatomic,copy) NSString *text; // 文本的内容,默认为 nil @property(nonatomic,retain) UIFont *font; // 文本的字体,默认为nil (system font 17 plain) @property(nonatomic,retain) UIColor *textColor; // 文本的颜色,默认为 nil (text draws blac…
本章学习要点       1.  了解iOS中控件继承关系:       2.  掌握UIControl基础知识;       3.  掌握UIButton基本用法:       4.  掌握UILabel基本用法:       5.  掌握UIImageView基本用法:       6.  掌握UISegmentedControl基本用法:       7.  掌握UITextField基本用法:       8.  掌握UISlider基本用法:        9.  掌握UIPageCo…
iOS是由苹果公司开发的移动操作系统,以xcode为主要开发工具,具有简单易用的界面.令人惊叹的功能,以及超强的稳定性,已经成为iPhone.iPad 和iPod touch 的强大基础:iOS 内置的众多技术和功能让 Apple设备始终保持着遥遥领先的地位. iOS学习路线:http://www.mobiletrain.org/page/ios.html 课程分  类 课程模块 模块介绍 课程内容 Part1C语言 C语言和Objective-C语言 C语言 Mac系统及常用工具.进制:C数据…
// UILabel -> UIView // UILabel用来显示文字内容 //创建一个Label,一般都直接通过initWithFrame确定位置跟大小 UILabel *lb = [[UILabel alloc]initWithFrame:CGRectMake(50, 80, 200, 200)]; //设置背景色,系统默认是白色背景 lb.backgroundColor = [UIColor grayColor]; //设置文字 lb.text = @"Application w…
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 =…