iOS Question Apple Sign in with Firebase button event

Segga

Member
Licensed User
Longtime User
Due to my current set-up, I have certain variables that need to be set before the Auth_SigndIn event is raised.
Is there a way to launch the Apple Sign in process manually through code, or detect that the Apple Sign in button has been tapped?
 

Segga

Member
Licensed User
Longtime User
Find this line:
B4X:
NSLog(@"handleAuthorizationAppleIDButtonPress");
Add this after it:
B4X:
[self.bi raiseEvent:nil event:@"auth_start" params:nil];
And add this sub to the class:
B4X:
Private Sub Auth_Start
    Log("auth start")

End Sub

Thanks heaps!!!
 
Upvote 0
Top