Skip to content

Instantly share code, notes, and snippets.

@sstadelman
Created July 31, 2014 22:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sstadelman/39d9348b8b8dad77ed76 to your computer and use it in GitHub Desktop.
Save sstadelman/39d9348b8b8dad77ed76 to your computer and use it in GitHub Desktop.
Initialize CommonAuthenticationConfigurator with MAFNGDelegate logonConfigurator property
#pragma mark - MAFLogonNGDelegate implementation
-(void) logonFinishedWithError:(NSError*)anError {
if (!anError) {
/*
Initialize HTTPConversationManager, set with logon configurator
*/
self.httpConvManager = [[HttpConversationManager alloc] init];
[[self.logonManager logonConfigurator] configureManager:self.httpConvManager];
} else {
NSLog(@"logonFinishedWithError:%@", anError);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment