文档学习 - UILabel - 属性详解
#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 - 属性详解的更多相关文章
- elasticsearch系列三:索引详解(分词器、文档管理、路由详解(集群))
一.分词器 1. 认识分词器 1.1 Analyzer 分析器 在ES中一个Analyzer 由下面三种组件组合而成: character filter :字符过滤器,对文本进行字符过滤处理,如 ...
- 一个完整的WSDL文档及各标签详解
<?xml version="1.0" encoding="UTF8" ?> <wsdl:definitions targetNamespac ...
- 使用vs code编写Markdown文档以及markdown语法详解
首先安装vscode工具,下载地址如下: https://code.visualstudio.com/ 在vs code的扩展中安装: Markdown Preview Enhanced 这款插件,安 ...
- MongoDB开发深入之一:文档数据关系模型详解(一对多,多对多)
文档关联模型通常有3种方式: 嵌入式(一对一.一对多) 后期手动统一ID处理(一对多.多对多) References引用(一对一.一对多) 文档树模型通常有3种方式: 父引用(Parent Refer ...
- 轻松学习Linux之Shell文件和目录属性详解
轻松学习Linux之Shell文件和目录属性详解 轻松学习Linux之理解Sitcky 轻松学习Linux之理解umask 轻松学习Linux之理解SUID&SGUID 本系列多媒体教程已完成 ...
- 第15.10节 PyQt(Python+Qt)入门学习:Qt Designer可视化设计界面组件与QWidget类相关的组件属性详解
PyQt学习有阵子了,对章节的骨架基本考虑好了,准备本节就写组件的属性的,结果一是日常工作繁忙,经常晚上还要加班,二是Qt的组件属性很多,只能逐一学习.研究和整理,花的时间有点长,不过终于将可视化设计 ...
- Android零基础入门第80节:Intent 属性详解(下)
上一期学习了Intent的前三个属性,本期接着学习其余四个属性,以及Android系统常用内置组件的启动. 四.Data和Type属性 Data属性通常用于向Action属性提供操作的数据.Data属 ...
- OutputCache属性详解(一)一Duration、VaryByParam
目录 OutputCache概念学习 OutputCache属性详解(一) OutputCache属性详解(二) OutputCache属性详解(三) OutputCache属性详解(四)— SqlD ...
- OutputCache属性详解(三)— VaryByHeader,VaryByCustom
目录 OutputCache概念学习 OutputCache属性详解(一) OutputCache属性详解(二) OutputCache属性详解(三) OutputCache属性详解(四)— SqlD ...
随机推荐
- checkbox组件
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/ ...
- iOS/object-c: 枚举类型 enum,NS_ENUM,NS_OPTIONS
一般情况下,我们采用C风格的enum关键字可以定义枚举类型. enum{ UIViewAnimationTransitionNone, UIViewAnimationTransitionFlipFro ...
- Nexus搭建Maven服务器
参考:http://blog.csdn.net/ichsonx/article/details/14642897 1. 为什么使用Nexus 如果没有私服,我们所需的所有构件都需要通过maven的中央 ...
- JVM工作原理和特点
操作系统装入JVM,是通过jdk中的java.exe来完成,通过以下4个步骤: 1. 创建JVM装载环境和配置: JVM装入系统,JVM提供的方式是操作系统的动态链接文件.文件就是一个装入路径的问题, ...
- 一个项目覆盖CS所有课程的可行性探究
我们先看计算机科学有哪些子领域. 学术领域有: 计算理论 信息和编码理论 算法和数据结构 形式化方法 程序设计语言 实践领域有: 计算机体系结构 并行计算和分布式系统 实时系统和嵌入式系统 操作系统 ...
- YII缓存Cache
缓存Cache 定义:将数据暂时存放在一个存储速度更快的介质上,下次读取数据时就可以从这个介质上来读取数据 介质:内存.文件.数据库(优化好的数据库) Yii缓存的分类:(framework/cach ...
- 【S】【S】【S】一大波前端干货整合(一)
前端交流站点 大前端 http://www.daqianduan.com/ V2EX http://www.v2ex.com/ W3cplus http://www. ...
- div置于页面底部
一直对于页面置底有一些困惑,下面这个例子不知道能不能解决 <!DOCTYPE html> <html lang="en"> <head> < ...
- .Net之美读书系列(一):委托与事件
开启新的读书之旅,这次读的书为<.Net之美:.Net关键技术深入解析>. 我是选择性阅读的,把一些自己觉得容易忘记的,或者比较重要的知识点记录下来,以便以后能方便呢查阅. 尊重书本原作者 ...
- Sql触发器脚本
ALTER Trigger [dbo].[test] --新建触发器 On [dbo].[test1] --在test1表中创建触发器 for insert --触发条件 As --事件触发后所要做的 ...