码迷,mamicode.com
首页 > 其他好文 > 详细

xcode 中 UILable 使用方法简介

时间:2015-06-02 20:14:16      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:uilabel   设置   方法   位置   uicolor   

初始化

    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; // 设置高亮

xcode 中 UILable 使用方法简介

标签:uilabel   设置   方法   位置   uicolor   

原文地址:http://blog.csdn.net/yadong_zhao/article/details/46333079

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!