文档学习 - 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 ...
随机推荐
- 得到当前堆栈信息的两种方式(Thread和Throwable)的纠结
今天进行slf4j中logger的同步封装.主要目的是为了以后方便更换日志实现系统. 遇到的问题:使用Thread.currentThread().getStackTrace()[1].getClas ...
- (原创)speex与wav格式音频文件的互相转换(二)
之前写过了如何将speex与wav格式的音频互相转换,如果没有看过的请看一下连接 http://www.cnblogs.com/dongweiq/p/4515186.html 虽然自己实现了相关的压缩 ...
- 百度编辑器umeditor使用总结
百度编辑器是一个功能很全.很强大. 百度单张图片上传只能存储在项目下面,而不能独立自定义存储位置,因此重写上传代码 百度文章中的图片是通过base64实现的,直接存储在数据库中 tomcat通过虚拟路 ...
- Java并发——Fork/Join框架
为了防止无良网站的爬虫抓取文章,特此标识,转载请注明文章出处.LaplaceDemon/ShiJiaqi. http://www.cnblogs.com/shijiaqi1066/p/4631466. ...
- FWFT FIFO读操作注意
FWFT:First Word Fall Through的缩写,好像是Xilinx的说法,Altera对应的概念是Show-ahead synchronous(SASO).即数据在rdreq有效之前就 ...
- 移动端rem布局的适配mixin【转藏】
/*================================================================ 以下为基于ip5 宽度320做的适配,标准html{font-si ...
- SqlServer优化博客网址
CareySon Sql Server MVP : http://www.cnblogs.com/CareySon/
- 学习重点:1、金典的设计模式在实际中应用2、JVM原理3、jui源代码
学习重点:1.金典的设计模式在实际中应用 2.JVM原理 3.jui源代码
- struts1、 struts2所有版本jar包下载地址大全
jakarta-struts-1.2.2.tar.gz 30-Aug-2004 18:21 12M jakarta-struts-1.2.2.tar.gz.asc 30-Aug-2 ...
- Leaflet交流
GIS科研网 Leaflet交流 谢绝转载 http://www.3sbase.com欢迎加群交流 108299288 http://www.3sbase.com/3sbase/webgistest ...