Instructions to upgrade iOS SDK version to 7.x
When upgrading from an older SDK version to version 7.x, several changes have to be applied in your application.
Removed API's
ONGUserClient
reauthenticateUser:delegate:
==>authenticateUser:delegate:
The authenticate user method is always enforcing user authentication, just like reauthenticate user was doing before.deregisterAuthenticator:completion:
==>deregisterAuthenticator:delegate:
- completion was block replaced with the delegate object
Renamed API's
ONGAuthenticationDelegate
userClient:didAuthenticateUser:
==>userClient:didAuthenticateUser:info:
- additionalinfo
parameter was added. The parameter is optional and used only when using Custom Authenticators.
ONGAuthenticatorRegistrationDelegate
userClient:didRegisterAuthenticator:forUser:
==>userClient:didRegisterAuthenticator:forUser:info:
- additionalinfo
parameter was added. The parameter is optional and used only when using Custom Authenticators.
ONGMobileAuthRequestDelegate
userClient:didHandleMobileAuthRequest:
==>userClient:didHandleMobileAuthRequest:info:
- additionalinfo
parameter was added. The parameter is optional and used only when using Custom Authenticators.