文档学习 - 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 ...
随机推荐
- Google高级技巧—google Hack★★★★
google hacking事实上并算不上什么新东西,当时并没有重视这样的技术,觉得webshell什么的,并无太大实际用途.google hacking事实上并非如此简单... 经常使用的googl ...
- Oracle 11g client的安装和配置。
数据库和client在不同的机器之上. 在安装之前,在安装Oracle数据库的server上导航到以下的文件夹. 将listener.ora和tnsnames.ora中的host中的localhost ...
- Linux 释放cached内存
使用free -m 查看系统使用的内存情况: # free -m total used free shared buffers ...
- UPDATE---修改表中数据
UPDATE table_name SET column1=value1,column2=value2,... [WHERE conditions]; 例: UPDATE userinfo SET n ...
- Socket.io各个发送消息的含义
// send to current request socket client socket.emit('message', "this is a test"); // send ...
- MyBatis自动获取主键,MyBatis使用Oracle返回主键,Oracle获取主键
MyBatis自动获取主键,MyBatis使用Oracle返回主键,Oracle获取主键 >>>>>>>>>>>>>> ...
- wampserver修改mysql密码后phpmyadmin登陆错误处理方法
首先针对wampserver这个软件来说,是很方面的! 在进行使用时都会涉及到关于mysql数据管理系统的相关密码的修改,这个当然修改是很简单,当时没有想那么多,想为自己的mysql添加一个密码,方式 ...
- C# 调用Java Webservice 加入SoapHeader 验证信息
C#调用java 编写的webservice时不会自动生成 soapheader 类接口的,需要改动Reference.cs. 在生成的代理类referende.cs中进行如下操作: 一.在声明pub ...
- andorid 平台调用Web Service , 图片传输
今天学习了下android调用web service,进行图片传输 下面是代码详解: onActivityResult 方法在图片剪裁完成之后调用: protected void onActivity ...
- Mysql 的一些异常解决
一.关于大文件存储 1.利用mysql存储大文件时,异常截图 在配置文件中加上如下一行 2.改完后重启mysql,但是又报如下错误: 解决方案: 我的mysql 是5.6版本,查到网上说要修改配置文件 ...