S Segga Member Licensed User Longtime User May 24, 2020 #1 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?
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?
Erel B4X founder Staff member Licensed User Longtime User May 24, 2020 #2 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 Upvote 0
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
S Segga Member Licensed User Longtime User May 24, 2020 #3 Erel said: 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 Click to expand... Thanks heaps!!! Upvote 0
Erel said: 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 Click to expand... Thanks heaps!!!