Carnival iOS SDK 3.11.0 Release Notes
Features
- Present your own detailed message view. You can now use the delegate method to implement (or turn off) the displaying of Carnival's Full Screen Detail View
For Example:
- (BOOL)shouldPresentMessageDetailForMessage:(CarnivalMessage *)message {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:message.title message:message.text delegate:nil cancelButtonTitle:@"Close" otherButtonTitles:@"Done", nil];
[alert show];
return NO;
}
Bug Fixes
- Fixed an issue where the In App Notification would not display properly on iPad Pro and Air 2 Models