美文网首页
UILable,UITextfield

UILable,UITextfield

作者: 艾克12138 | 来源:发表于2016-06-25 20:58 被阅读24次

UIlable

//设置lable上的字

lable.text = @"zhang";

//设置lable中心对齐

lable.textAlignment = NSTextAlignmentCenter;

//设置lable偏移的阴影色

lable.shadowColor = [UIColor grayColor];

//设置lable的偏移量

lable.shadowOffset = CGSizeMake(20, 20);



uitextfield

//设置textfield的边框样式

self.text.borderStyle = UITextBorderStyleRoundedRect;

//设置textfield阴影提示文字

self.text.placeholder =@"input";

//设置textfield是否可以编辑

self.text.enabled = YES;

//设置textfield编辑时,清除键常显示

self.text.clearButtonMode =UITextFieldViewModeAlways;

//设置textfield输入密码格式

self.text.secureTextEntry =YES;


相关文章

网友评论

      本文标题:UILable,UITextfield

      本文链接:https://www.haomeiwen.com/subject/gxradttx.html