博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 修改textholder的颜色
阅读量:4928 次
发布时间:2019-06-11

本文共 668 字,大约阅读时间需要 2 分钟。

UITextField *textField = [[UITextField alloc]initWithFrame:CGRectMake(10, 50, 320, 50)];    textField.placeholder = @"填写订单";    if ([textField respondsToSelector:@selector(setAttributedPlaceholder:)]) {        UIColor *color = [UIColor redColor];        textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"填写订单" attributes:@{NSForegroundColorAttributeName: color}];    } else {        NSLog(@"Cannot set placeholder text's color, because deployment target is earlier than iOS 6.0");        // TODO: Add fall-back code to set placeholder color.    }    [self.view addSubview:textField];

 

转载于:https://www.cnblogs.com/lihaibo-Leao/p/3641563.html

你可能感兴趣的文章
JVM——参数设置、分析
查看>>
Struts 框架 之 文件上传下载案例
查看>>
【重走Android之路】【路线篇(二)】知识点归纳
查看>>
graphviz入门
查看>>
JAVA编码(37)—— Java字符串转换为MAP对象
查看>>
jquery.validate.js 一个jQuery验证格式控件
查看>>
有表格的九九乘法表
查看>>
WPF 4 DataGrid 控件(自定义样式篇)
查看>>
改善C#程序的建议1:非用ICloneable不可的理由
查看>>
PHP的错误机制总结
查看>>
window.location
查看>>
C#实现万年历(农历、节气、节日、星座、星宿、属相、生肖、闰年月、时辰)
查看>>
使用Flex图表组件
查看>>
官网分析(英雄传奇)(如何设计网站前端)
查看>>
SSH Key的生成和使用(for git)
查看>>
html5--6-52 动画效果-过渡
查看>>
调查表与调查结果分析
查看>>
Windows系统下安装MySQL详细教程(命令安装法)
查看>>
PHP实用小程序(六)
查看>>
PDFsharp Samples
查看>>