作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有 iphone 应用程序,其中有文本字段,它工作正常,但问题是它显示文本字段顶部的文本,我希望它垂直居中对齐。这是我的文本字段代码。
herdTextFieldSecond=[[UITextField alloc] initWithFrame:CGRectMake(108,1052,259,36)];
herdTextFieldSecond.textAlignment = UITextAlignmentLeft;
herdTextFieldSecond.textColor = [UIColor blackColor];
herdTextFieldSecond.borderStyle =UITextBorderStyleRoundedRect;
herdTextFieldSecond.text=@"";
herdTextFieldSecond.font = [UIFont fontWithName:@"Helvetica" size:16];
herdTextFieldSecond.delegate=self;
herdTextFieldSecond.layer.borderWidth =1;
herdTextFieldSecond.layer.borderColor = [UIColor darkGrayColor].CGColor;
herdTextFieldSecond.layer.cornerRadius=5;
最佳答案
使用以下代码在 UITextFiled
中垂直对齐文本:
MyTextFieldName.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
关于iphone - 如何在 iPhone 应用程序的垂直居中显示 UITextField 中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18566162/
我是一名优秀的程序员,十分优秀!