PSAlertView
PSAlertView copied to clipboard
Problem with method initWithTitle on iOS 8
When I don't set the title on the action sheet, it still display the empty title (see image bellow).
PSPDFActionSheet *actionSheet = [[PSPDFActionSheet alloc] initWithTitle:@""];
So, I fix =>
PSPDFActionSheet *actionSheet = [[PSPDFActionSheet alloc] init];
