1 前言 UILabel可以顯示給用戶靜態文本,並且控制文本的字體和顏色,今天我們來學習一下UILabel。 2 代碼實例 ZYViewController.h: #import <UIKit/UIKit.h> @interface ZYViewController : UIViewController @property(nonatomic,strong) UILabel *myLabel; @end #import <UIKit/UIKit.h> @interface ZYViewController : UIViewController @property(nonatomic,strong) UILabel *myLabel; @end ZYViewController.m: @synthesize myLabel; - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. self.view.backgroundColor = [UIColor whiteColor]; // CGRect labelFrame = CGRectMake(0.0f, 0.0f, 100.0f, 23.0f); CGRect labelFrame = CGRectMake(0.0f, 0.0f, 100.0f, 50.0f); self.myLabel = [[UILabel alloc] initWithFrame:labelFrame]; self.myLabel.numberOfLines = 3;//分三行 self.myLabel.text = @"Archy is Studying IOS 5 Programming";//label的文字 self.myLabel.font = [UIFont boldSystemFontOfSize:14.0f];//字體樣式 self.myLabel.center = self.view.center;//UILabel控件居中 [self.view addSubview:self.myLabel]; } @synthesize myLabel; - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. self.view.backgroundColor = [UIColor whiteColor]; // CGRect labelFrame = CGRectMake(0.0f, 0.0f, 100.0f, 23.0f); CGRect labelFrame = CGRectMake(0.0f, 0.0f, 100.0f, 50.0f); self.myLabel = [[UILabel alloc] initWithFrame:labelFrame]; self.myLabel.numberOfLines = 3;//分三行 self.myLabel.text = @"Archy is Studying IOS 5 Programming";//label的文字 self.myLabel.font = [UIFont boldSystemFontOfSize:14.0f];//字體樣式 self.myLabel.center = self.view.center;//UILabel控件居中 [self.view addSubview:self.myLabel]; }
運行結果: