Skip to content

Carnival iOS SDK 3.11.0 Release Notes

Compare
Choose a tag to compare
@CarnivalBot CarnivalBot released this 29 Mar 21:25

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