码迷,mamicode.com
首页 > 移动开发 > 详细

第38月第8天 ios13 _placeholderLabel

时间:2019-11-08 12:05:44      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:his   tail   run   sdn   blog   ras   ted   uitext   uil   

1.

"NSGenericException" - reason: "Access to UITextField‘s _placeholderLabel ivar is prohibited. This is an application bug"

设置TextFiled的默认文字颜色在iOS13 Crash。

[textfield setValue:[UIColor whiteColor] forKeyPath:@"_placeholderLabel.textColor"];
 查了一下,帖子挺多的,解决方案:

Ivar ivar = class_getInstanceVariable([UITextField class], "_placeholderLabel");
UILabel *placeholderLabel = object_getIvar(textField, ivar);
placeholderLabel.textColor = [UIColor whiteColor];
记得加头文件

#import <objc/runtime.h>

 

https://blog.csdn.net/Han_Laomo/article/details/101111427

第38月第8天 ios13 _placeholderLabel

标签:his   tail   run   sdn   blog   ras   ted   uitext   uil   

原文地址:https://www.cnblogs.com/javastart/p/11819177.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!