作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想要这个占位符位置
我尝试了所有对齐方式,但都行不通。这是我实现白色的占位符程序:
[searchtextfield setValue:[UIColor whitecolor] forKeyPath:@"_placeholderLabel.textColor"];
最佳答案
对于 objective-c
对于仅填充占位符,此代码将起作用
usernameTF.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@" Your text"];
为了填充 UITextField 的占位符和文本,下面的代码将起作用
usernameTF.layer.sublayerTransform = CATransform3DMakeTranslation(40, 0, 30);
对于 Swift 3.0
对于仅填充占位符,此代码将起作用
self.usernameTF.attributedPlaceholder = NSAttributedString(string: " YourText")
为了填充 UITextField 的占位符和文本,下面的代码将起作用
usernameTF.layer.sublayerTransform = CATransform3DMakeTranslation(40, 0, 30)
关于ios - 如何在文本字段中对齐此类占位符位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41282355/
我是一名优秀的程序员,十分优秀!