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