第38月第8天 ios13 _placeholderLabel
Posted lianhuaren
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第38月第8天 ios13 _placeholderLabel相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章