#import "ViewController.h"

@implementation ViewController

- (void)viewDidLoad {

[super viewDidLoad];

// 1.

UILabel *label = [[UILabel alloc] init];

// 1.1 text

label.text = @"//  ViewController.m01-UILabelCreated byjiaguanglei on 15/9/30Copyright (c) 2015年 roseonly. All rights reserved.";

// 1.2 font

/**

const CGFloat UIFontWeightUltraLight;

const CGFloat UIFontWeightThin;

const CGFloat UIFontWeightLight;

const CGFloat UIFontWeightRegular;

const CGFloat UIFontWeightMedium;

const CGFloat UIFontWeightSemibold;

const CGFloat UIFontWeightBold;

const CGFloat UIFontWeightHeavy;

const CGFloat UIFontWeightBlack;

+ (UIFont *)systemFontOfSize:(CGFloat)fontSize;

+ (UIFont *)boldSystemFontOfSize:(CGFloat)fontSize;   -- 粗体

+ (UIFont *)italicSystemFontOfSize:(CGFloat)fontSize; -- 斜体

+ (UIFont *)systemFontOfSize:(CGFloat)fontSize weight:(CGFloat)weight NS_AVAILABLE_IOS(8_2);

*/

label.font = [UIFont systemFontOfSize:20 weight:UIFontWeightBlack];

// 1.3 textColor

label.textColor = [UIColor magentaColor];

// 1.4 shadowColor

label.shadowColor = [UIColor greenColor];

// 1.5 shadowOffset

label.shadowOffset = CGSizeMake(2, 2);

// 1.6 textAlignment

/**

NSTextAlignmentLeft      = 0,    // Visually left aligned

NSTextAlignmentCenter    = 1,    // Visually centered

NSTextAlignmentRight     = 2,    // Visually right aligned

NSTextAlignmentJustified = 3,   // Fully-justified. The last line in a paragraph is natural-aligned.

NSTextAlignmentNatural   = 4,  // Indicates the default alignment for script

*/

label.textAlignment = NSTextAlignmentLeft;

// 1.7 lineBreakMode

/**  --- 设置换行格式

*  with long lines

NSLineBreakByWordWrapping = 0, --- 以单词为单位, 自动换行, 显示不全, 没有省略号

NSLineBreakByCharWrapping --- 以字符为单位自动换行, 没有省略号

NSLineBreakByClipping     --- 直接切除, 可能显示半个字符

NSLineBreakByTruncatingHead --- 在行头部, 显示省略号

NSLineBreakByTruncatingTail --- 在行尾部, 显示省略号

NSLineBreakByTruncatingMiddle --- 在行中间, 显示省略号

*/

label.lineBreakMode = NSLineBreakByTruncatingTail;

// 1.8 highlighted

// 1.8.1 highlightedTextColor

label.highlighted = NO;

label.highlightedTextColor = [UIColor blackColor];

// 1.9 enabled

// 1.9.1 userInteractionEnabled

label.enabled = YES;

label.userInteractionEnabled = YES;

// 1.10 numberOfLines

label.numberOfLines = 0;

// 1.11 adjustsFontSizeToFitWidth

label.adjustsFontSizeToFitWidth = YES;

// 1.11.1 adjustsLetterSpacingToFitWidth  --  已过期, 用NSKernAttributeName替换

// 1.11.2 minimumFontSize  --- --  已过期, 用minimumScaleFactor替代

label.minimumScaleFactor = .8;

// 1.11.3 baselineAdjustment

/**

UIBaselineAdjustmentAlignBaselines = 0, // default.

UIBaselineAdjustmentAlignCenters,

UIBaselineAdjustmentNone,

*/

label.baselineAdjustment = UIBaselineAdjustmentNone;

// 1.12 -- 绘图中可能会用到

/**

- (CGRect)textRectForBounds:(CGRect)bounds limitedToNumberOfLines:(NSInteger)numberOfLines;

- (void)drawTextInRect:(CGRect)rect;

@property(nonatomic) CGFloat preferredMaxLayoutWidth NS_AVAILABLE_IOS(6_0);

*/

// 1.13 attributedText

NSDictionary *attrs = @{NSForegroundColorAttributeName : [UIColor redColor]};

NSAttributedString *attrString = [[NSAttributedString alloc] initWithString:label.text attributes:attrs];

label.attributedText = attrString;

CGSize size = [UIScreen mainScreen].bounds.size;

label.frame = CGRectMake(10, 100, size.width - 20, 50);

label.backgroundColor = [UIColor lightGrayColor];

[self.view addSubview:label];

}

文档学习 - UILabel - 属性详解的更多相关文章

  1. elasticsearch系列三:索引详解(分词器、文档管理、路由详解(集群))

    一.分词器 1. 认识分词器  1.1 Analyzer   分析器 在ES中一个Analyzer 由下面三种组件组合而成: character filter :字符过滤器,对文本进行字符过滤处理,如 ...

  2. 一个完整的WSDL文档及各标签详解

    <?xml version="1.0" encoding="UTF8" ?> <wsdl:definitions targetNamespac ...

  3. 使用vs code编写Markdown文档以及markdown语法详解

    首先安装vscode工具,下载地址如下: https://code.visualstudio.com/ 在vs code的扩展中安装: Markdown Preview Enhanced 这款插件,安 ...

  4. MongoDB开发深入之一:文档数据关系模型详解(一对多,多对多)

    文档关联模型通常有3种方式: 嵌入式(一对一.一对多) 后期手动统一ID处理(一对多.多对多) References引用(一对一.一对多) 文档树模型通常有3种方式: 父引用(Parent Refer ...

  5. 轻松学习Linux之Shell文件和目录属性详解

    轻松学习Linux之Shell文件和目录属性详解 轻松学习Linux之理解Sitcky 轻松学习Linux之理解umask 轻松学习Linux之理解SUID&SGUID 本系列多媒体教程已完成 ...

  6. 第15.10节 PyQt(Python+Qt)入门学习:Qt Designer可视化设计界面组件与QWidget类相关的组件属性详解

    PyQt学习有阵子了,对章节的骨架基本考虑好了,准备本节就写组件的属性的,结果一是日常工作繁忙,经常晚上还要加班,二是Qt的组件属性很多,只能逐一学习.研究和整理,花的时间有点长,不过终于将可视化设计 ...

  7. Android零基础入门第80节:Intent 属性详解(下)

    上一期学习了Intent的前三个属性,本期接着学习其余四个属性,以及Android系统常用内置组件的启动. 四.Data和Type属性 Data属性通常用于向Action属性提供操作的数据.Data属 ...

  8. OutputCache属性详解(一)一Duration、VaryByParam

    目录 OutputCache概念学习 OutputCache属性详解(一) OutputCache属性详解(二) OutputCache属性详解(三) OutputCache属性详解(四)— SqlD ...

  9. OutputCache属性详解(三)— VaryByHeader,VaryByCustom

    目录 OutputCache概念学习 OutputCache属性详解(一) OutputCache属性详解(二) OutputCache属性详解(三) OutputCache属性详解(四)— SqlD ...

随机推荐

  1. stack例子

    栈使用在括号匹配中的例子 程序如下: #include<stack> #include<iostream> using namespace std; int main() { ...

  2. 【转】如何优化Cocos2d-X游戏的内存

    Published on 2013 年 2 月 4 日, by donglin http://blog.chukong-inc.com/index.php/2013/02/04/%E5%A6%82%E ...

  3. find——文件查找命令 linux一些常用命令

    find 命令eg: 一般文件查找方法: 1.  find /home -name file  ,  在/home目录下查找文件名为file的文件2.  find /home -name '*file ...

  4. iOS 推送,当接到推送消息时如何处理?

    接收到通知时有两种进入的方式:1.当app未运行时(BOOL)application:(UIApplication *)application didFinishLaunchingWithOption ...

  5. javascript进击(七)Ajax

    AJAX AJAX = Asynchronous JavaScript and XML(异步的 JavaScript 和 XML). AJAX 不是新的编程语言,而是一种使用现有标准的新方法. AJA ...

  6. 解决PL/SQL Developer中文乱码的问题

    set nls_lang=SIMPLIFIED CHINESE_CHINA.ZHS16GBK cd "c:\Program Files\PLSQL Developer" PLSQL ...

  7. Android开发——构建自定义组件

    Android中,你的应用程序程序与View类组件有着一种固定的联系,例如按钮(Button). 文本框(TextView), 可编辑文本框(EditText), 列表框(ListView), 复选框 ...

  8. MySQL约束

    MySQL中约束保存在information_schema数据库的table_constraints中,可以通过该表查询约束信息: 常用5种约束: not null: 非空约束,指定某列不为空 uni ...

  9. Ajax异步的回调函数执行了多遍

    问题: 在做下拉滚动加载时(类似于qq空间下拉加载),数据向下滚动一次,就会加载一次,即append一下,跟踪js后,发现回调函数执行了多次,导致append将上次的append结果append上了, ...

  10. jfinal不能正确加载html网页,总是报错的解决方法

    今天自学jfinal,遇到一个很奇怪的问题,render("/index.html");总是报错. 仔细看错误日志,才发现原来是因为html网页放到了WEB-INF文件夹下面了,所 ...