UI 常用方法总结之--- UILabel UITextField (不断更新中)

UILabel :
UIView <NSCoding>

1.创建一个UILabel对象

UILabel *label = [[UILabel
alloc]initWithFrame:CGRectMake(30,
30, 280,
60)];

2.backgroundColor

背景颜色

3.text

显示的文本信息

eg:label.text =
@"显示的文本信息";

4.textColor

文本颜色

eg:label.textColor = [UIColor
yellowColor];

5.shadowColor

文本阴影颜色

eg:label.shadowColor = [UIColor
blueColor];

6.shadowOffset

文本阴影偏移量

eg:label.shadowOffset =
CGSizeMake(3, 3);

7.textAlignment

文本格式处理(对齐方式)

eg:label.textAlignment  =
NSTextAlignmentCenter;

8.lineBreakMode

当文本过长时, label显示的断行方式

eg:label.lineBreakMode =
NSLineBreakByTruncatingHead;

9.numberOfLines

控制label显示的行数

eg:label.numberOfLines =
0;

10.font

字体大小  系统默认字体大小17

eg:label.font = [UIFont
systemFontOfSize:20];

UITextField :
UIControl <UITextInput,
NSCoding>

1.创建一个UITextField对象

UITextField *name = [[UITextFieldalloc]initWithFrame:CGRectMake(30,100,
280, 30)];

2.placeholder

默认的占位字符串 一旦输入
自动隐藏

eg:name.placeholder =
@"请在这里输入";

3.secureTextEntry

输入转换为黑点

eg:name.secureTextEntry =
YES;

4.keyboardType

更改键盘类型

name.keyboardType =
UIKeyboardTypeASCIICapable;

5.borderStyle

外观控制

name.borderStyle =
UITextBorderStyleRoundedRect;

6.clearButtonMode

清除按钮

name.clearButtonMode =
UITextFieldViewModeWhileEditing;

7.backgroundColor

背景颜色

8.回收键盘操作

[textField resignFirstResponder];

9.- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField;

//是否允许输入

10.- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString
*)string;

//限制输入字符

eg:   if ([string
isEqualToString:@"a"]) {

return
NO;

}

NSLog(@"%@",string);

return
YES;

11.- (BOOL)textFieldShouldReturn:(UITextField *)textField;

//返回按钮调用方法

时间: 2024-10-19 03:42:18

UI 常用方法总结之--- UILabel UITextField (不断更新中)的相关文章

UI 常用方法总结之--- UIWindow UIView (不断更新中)

 UIWindow (UIView) 1.创建一个uiwindow对象 self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 2.backgroundColor 背景颜色 3.- (void)makeKeyAndVisible; eg: [self.window makeKeyAndVisible]; 设置这个window为主windows,并使其可见 4.rootViewController

学习IOS开发UI篇--UI知识点总结(一) UIButton/UITextField

UIkit框架下的几个基本控件,UIButton,UITextField,UILabel,UIImageView,UIScrollView,UITableView,UITableViewCell,UIPageControl; 他们的继承关系,UILabel,UIImageView,UIScrollView,UITableViewCell,直接继承自UIView; UIButton,UITextField,UIPageControl,继承自UIControl; UIControl继承自UIView

UI 常用方法总结之--- UITableView

UI 常用方法总结之--- UITableView (不断更新中) UITableView : UIScrollView <NSCoding> 1. 创建一个 UITableView 对象 ITableView *tableView = [[UITableView alloc]initWithFrame:[[UIScreen mainScreen] bounds] style:UITableViewStylePlain]; 2.separatorColor 分割线颜色 e.g. ableVie

UILabel,UITextField 以及UIButton的应用

</pre><pre name="code" class="cpp">一.UILabel 是ioS中开发用来显示文字的控件,是UIView的子类,所以具体UIView的所有功能,只不过比UIView多了文字显示的功能, 使用过程也是分四步: 1.创建对象 2.配置属性 3.添加到父视图 4.释放所有权 重点:不同的控件之间只是配置的属性的不同,也就是差异所在,所以学习一个新的控件,只有配置该控件独有的属性即可 1.创建对象 UILabel *

UILabel,UITextField,UIButton

@interfaceAppDelegate () {             UIView *_containerView; } @end 不是一开始定义类的时候定义的实例变量,而是根据需求而定义的实例变量,统一定义在.m文件中的延展中,外界不可见 @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)la

vue项目常用方法封装,持续更新中。。。

vue项目中可以直接使用 1.常用工具类untils.js中 /* * 验证手机号是否合格 * true--说明合格 */ export function isPhone(phoneStr){ let myreg = /^[1][3,4,5,7,8,9][0-9]{9}$/; if (!myreg.test(phoneStr)) { return false; } else { return true; } } /* * 验证身份证号是否合格 * true--说明合格 */ export fun

ASP.NET SignalR 与 LayIM2.0 配合轻松实现Web聊天室 实战系列(不断更新中)

项目简介 利用ASP.NET SignalR技术与Layim前端im框架实现的一个简单的web聊天室,包括单聊,群聊,加好友,加群,好友搜索,管理,群组管理,好友权限设置等功能.涉及技术: ElasticSearch 搜索,支持各种条件搜索,效率高,速度快,稳准狠. Redis缓存,统计在线好友,登录token等 RabbitMQ消息队列,发送消息通过队列降低数据库访问压力,或者延迟执行任务. ASP.NET MVC,UI架构. 以及普通的三层架构等.CRUD 当然其中的这些技术也是纯粹为了使用

[转]Android开发要看的网站(不断更新中)

Android网址或Blog Android官网 身为Android开发者不知道这个网站就太说不过去了,上面有你任何你需要的东西 Android Developers Blog Android官网博客, 在上面可以关注Android最新的进展与最权威的博客(须翻墙) Android开源项目汇总 我的好朋友Trinea整理的非常全面的GitHub开源项目汇总,不需要重复发明轮子,尽情遨游在开源世界里吧 Android的开源库 国外整理的Android开源库汇总,和上面的比起来分类更明确,你总能很方

Android开发面试经——4.常见Android进阶笔试题(更新中...)

Android开发(29)  版权声明:本文为寻梦-finddreams原创文章,请关注:http://blog.csdn.net/finddreams 关注finddreams博客:http://blog.csdn.net/finddreams/article/details/44301359 上一篇文章我们已经了解了Android笔试的一些基础题目, [<Android开发面试经——2.常见Android基础笔试题> ] (http://blog.csdn.net/finddreams/a