程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> xcode 中 UILable 使用方法簡介

xcode 中 UILable 使用方法簡介

編輯:C++入門知識

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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved