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
ONGUserClientreauthenticateUser: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
ONGAuthenticationDelegateuserClient:didAuthenticateUser:==>userClient:didAuthenticateUser:info:- additionalinfoparameter was added. The parameter is optional and used only when using Custom Authenticators.ONGAuthenticatorRegistrationDelegateuserClient:didRegisterAuthenticator:forUser:==>userClient:didRegisterAuthenticator:forUser:info:- additionalinfoparameter was added. The parameter is optional and used only when using Custom Authenticators.ONGMobileAuthRequestDelegateuserClient:didHandleMobileAuthRequest:==>userClient:didHandleMobileAuthRequest:info:- additionalinfoparameter was added. The parameter is optional and used only when using Custom Authenticators.