Skip to content

Instantly share code, notes, and snippets.

@Geri-Borbas
Last active December 18, 2015 13:18
Show Gist options
  • Save Geri-Borbas/5788674 to your computer and use it in GitHub Desktop.
Save Geri-Borbas/5788674 to your computer and use it in GitHub Desktop.
Custom button titles with EPPZAlert.
[EPPZAlert alertWithTitle:@"Download update?"
message:@"Downloading can take up to 40 seconds! Still want to proceed?"
buttonTitles:@[ @"Upload", @"Later" ]
completition:^(NSString *selectedButtonTitle)
{
if ([selectedButtonTitle isEqualToString:@"Upload"])
[self upload];
if ([selectedButtonTitle isEqualToString:@"Later"])
[self later];
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment