xcode 中 UILable 使用方法簡介
初始化
UILabel *lable = [[UILabel alloc] init]; // 初始化
lable.frame = CGRectMake(30, 30, 200, 50); // 設置 lable 位置和大小
lable.backgroundColor = [UIColor orangeColor]; // 設置lable背景顏色
[self.window addSubview:lable]; // 添加
[lable release];
基本操作
lable.alpha = 0.2; // 透明度 范圍是:0 - 1
lable.text = @"趙亞東"; // 設置名稱
lable.textColor = [UIColor redColor]; // 字體顏色
lable.textAlignment = NSTextAlignmentCenter; // 對齊方式
lable.font = [UIFont boldSystemFontOfSize:17]; // 黑體 字體17
lable.numberOfLines = 0; // 設置行數為0,自動調整行數
其他操作
NSLog(@"%@", [UIFont familyNames]); // 可以打印出全部存在的字體
lable.font = [UIFont systemFontOfSize:22.2]; // 只設置字體顏色
lable.highlighted = YES; // 設置高亮