show/hide this revision's text 2 added 8 characters in body

As the error log shows, authFlag is not an NSString, but an NSCFBoolean.

You can do this:

BOOL 

NSCFBoolean *authFlag = [[innerContent valueForKey:@"authenticationFlag"] boolValue]innerContent valueForKey:@"authenticationFlag"];

if(authFlagif([authFlag boolValue]) {
    NSLog(@"Logged in");
    self.view = homeView;
} else {
    NSLog(@"Not logged in");
}
show/hide this revision's text 1

As the error log shows, authFlag is not an NSString, but an NSCFBoolean.

You can do this:

BOOL authFlag = [[innerContent valueForKey:@"authenticationFlag"] boolValue];

if(authFlag) {
    NSLog(@"Logged in");
    self.view = homeView;
} else {
    NSLog(@"Not logged in");
}