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");
}
