admin管理员组

文章数量:1532039

2023年12月23日发(作者:)

//! 添加苹果登录的状态通知- (void)observeAppleSignInState { if (@available(iOS 13.0, *)) { NSNotificationCenter *center = [NSNotificationCenter defaultCenter]; [center addObserver:self selector:@selector(handleSignInWithAppleStateChanged:) name:ASAuthorizationAppleIDProviderCredentialRevokedNotification object:nil]; }}//! 观察SignInWithApple状态改变- (void)handleSignInWithAppleStateChanged:(id)noti {

NSLog(@"%s", __FUNCTION__); NSLog(@"%@", noti);}- (void)dealloc {

if (@available(iOS 13.0, *)) { [[NSNotificationCenter defaultCenter] removeObserver:self name:ASAuthorizationAppleIDProviderCredentialRevokedNotification object:nil]; }}

本文标签: 状态苹果登录