博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 修改textholder的颜色
阅读量:4936 次
发布时间: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

你可能感兴趣的文章
Android内核开发:序
查看>>
部署tomcat负载均衡集群,实现节点之间内存中的Session共享。
查看>>
如何测试WEB应用程序防止SQL注入***
查看>>
TFS版本管理(八)
查看>>
【VMCloud云平台】SCO(五)制作流程(一)
查看>>
从NDK在非Root手机上的调试原理探讨Android的安全机制
查看>>
八大深层志趣——问问你自己到底喜欢做什么工作
查看>>
通过刷bios的方式在win8.1平板上启动windows phone模拟器
查看>>
一道企业shell编程实战题-看看谁能快速搞定
查看>>
Windows Server8下补丁分发配置与iSCSI配置
查看>>
Ubuntu系统(十)-Web服务配置
查看>>
我的友情链接
查看>>
oracle hints的那点事
查看>>
安装多实例造成***S故障
查看>>
在Windows server 2012上部署DPM 2012 SP1 RTM之安装配置
查看>>
Windows Server 2012 R2 Hyper-v 虚拟机连接增强会话模式(通过 VMBus 远程访问)
查看>>
.NET应用架构设计—表模块模式与事务脚本模式的代码编写
查看>>
mysql建用户和修改密码和忘记密码的解决办法
查看>>
Provisioning Services 7.6 入门到精通系列之五:PVS控制台安装
查看>>
老字号“张小泉”上线小程序与酷客多达成战略合作!
查看>>