UILabel头文件常见属性
- text : default is nil 文本属性,默认值是 nil
@property(nullable, nonatomic,copy) NSString *text;
- font : default is nil (system font 17 plain) 字体属性,默认系统17号字体
@property(null_resettable, nonatomic,strong) UIFont *font;
- textColor : default is nil (text draws black) 文本颜色属性,默认黑色
@property(null_resettable, nonatomic,strong) UIColor *textColor;
- shadowColor : default is nil (no shadow) 阴影属性,默认没有阴影
@property(nullable, nonatomic,strong) UIColor *shadowColor;
- shadowOffset : default is CGSizeMake(0, -1) -- a top shadow 阴影偏移位置,默认顶部位置有1个点的阴影
@property(nonatomic) CGSize shadowOffset;
- textAlignment : default is NSTextAlignmentLeft 文本对齐方式,默认左对齐。(取值为枚举)
@property(nonatomic) NSTextAlignment textAlignment;
- attributedText : 可在设置文字时,同时设置文字的属性内容,包括字体,颜色等。
@property(nullable, nonatomic,copy) NSAttributedString *attributedText NS_AVAILABLE_IOS(6_0);
- highlighted : default is NO 是否高亮,默认状态 NO
@property(nonatomic,getter=isHighlighted) BOOL highlighted;
- highlightedTextColor : default is nil,高亮状态时文本颜色。 默认 nil
@property(nullable, nonatomic,strong) UIColor *highlightedTextColor;
- userInteractionEnabled : default is NO 是否可以跟用户交互,默认 NO
@property(nonatomic,getter=isUserInteractionEnabled) BOOL userInteractionEnabled;
- enabled : default is YES. changes how the label is drawn 是否是可用状态,默认YES,可以改变标签如何绘制
@property(nonatomic,getter=isEnabled) BOOL enabled;
- numberOfLines : 文本显示的行数。0是无限行
@property(nonatomic) NSInteger numberOfLines;
- adjustsFontSizeToFitWidth : default is NO。调整字体的大小以适应标签的大小。默认不调整。
@property(nonatomic) BOOL adjustsFontSizeToFitWidth;
UILabel头文件常见属性的更多相关文章
- UIButton 头文件常见属性和方法
UIButton头文件常见属性 1.属性 contentEdgeInsets: default is UIEdgeInsetsZero.设置内容四边距,默认边距为0 @property(nonatom ...
- Objective的头文件@interface属性
源码:http://files.cnblogs.com/ios8/TestPropertyDemo.zip 1 前言 最近有个疑惑 @interface中的属性和@property声明的属性有什么区别 ...
- 016-PHP读取文件常见属性
<?php print("文件的所有者(UID 值):"); print(fileowner("data.txt") . "<br> ...
- 用javah 导出类的头文件, 常见的错误及正确的使用方法
******************************************************************************** 用javah 导出类的头文件, 常见的 ...
- arpa/inet.h所引起的Segmentation fault及网络编程常见的头文件
最近在学习Linux网络编程方面的知识,感觉还是有些困难.主要是对协议过程的理解,还有socket的API的理解不够深刻.今天复习编写了一个TCP的服务端和客户端的程序实现client.c从命令行参数 ...
- 预编译头文件 StdAfx.h
预编译头文件: 最常见的使用场景就是 StdAfx.h 文件,在这个文件中包含常用的头文件,比如windows.h,cstdio,string,别的 .cpp 文件去包含 StdAfx.h 头文件.编 ...
- .c和.h文件的区别(头文件与之实现文件的的关系~ )
.c和.h文件的区别 一个简单的问题:.c和.h文件的区别 学了几个月的C语言,反而觉得越来越不懂了.同样是子程序,可以定义在.c文件中,也可以定义在.h文件中,那这两个文件到底在用法上有什么区别呢 ...
- C++ 头文件系列(queue)
简介 这个头文件定义了两个跟队列有关的类----quque.priority_queue,分别实现的是队列 和 优先队列这两个概念. 但是与这两个类模版与其它类模版(vector.array等)最大的 ...
- Request 对象 response 对象 常见属性
请求和响应 Express 应用使用回调函数的参数: request 和 response 对象来处理请求和响应的数据. app.get('/', function (req, res) { // - ...
随机推荐
- html css js 框架
html css js 框架 Bootstrap http://www.bootcss.com/ http://www.cnblogs.com/aehyok/p/3404867.html ...
- html5的改变
html5的改变 新增的元素 新增的结构元素 section.article.aside.header.hgroup.footer.nav.figure 新增的其他元素 video.audio.emb ...
- .NET一个线程更新另一个线程的UI(两种实现方法及若干简化)
Winform中的控件是绑定到特定的线程的(一般是主线程),这意味着从另一个线程更新主线程的控件不能直接调用该控件的成员. 控件绑定到特定的线程这个概念如下: 为了从另一个线程更新主线程的Window ...
- 临时笔记:flume+ CDH 的 twitter实例
http://www.slideshare.net/OpenAnayticsMeetup/analyzing-twitter-data-with-hadoop-17718553 http://www. ...
- 【IOS学习基础】归档和解档
一.归档介绍 1.归档是指用某种格式来保存一个或多个对象,以便以后还原这些对象的过程.归档是将数据持久化的一种方式(所谓数据持久化,就是指在IOS开发过程中,将数据保存到本地,能够让程序的运行更加流畅 ...
- 二维数组在text,image的应用
NSArray *imageArr = @[@[@"查看地图",@"map_hy.png"], @[@"联系号码",@"phone ...
- Fedora下用Iptux,中文乱码解决
Ubuntu/Fedora下用Iptux与Windows下大飞鸽传书,中文乱码解决 问题描述: 在Ubuntu/Fedora下安装了Iptux后,再往Windows机器上发送文件或消息时,如果有中文, ...
- http://www.sufeinet.com/thread-655-1-1.html
http://www.sufeinet.com/thread-655-1-1.html
- js编码规范
使用统一的 编码规范 编写代码能提高JS代码的可读性,利于后期的维护和扩展,利于团队开发. 引用规范: 1.采用<script>...</script>方式引入 *.js 文件 ...
- <link>: rel, href
Reference: http://www.w3schools.com/tags/tag_link.asp <link> Attributes: Attribute Value Descr ...