第38月第8天 ios13 _placeholderLabel ASAuthorizationAppleIDProvider

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

 

2.app store审核4.8 Sign in with Apple

ASAuthorizationAppleIDProvider

 

posted @ 2019-11-08 11:45  lianhuaren  阅读(669)  评论(0编辑  收藏  举报