UILable,UITextfield

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)