Advertisement
Guest User

Untitled

a guest
Nov 13th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:__(@"Pojawił się nowy wpis\nw audycji") message:__(@"Jeśli chcesz przejść do nowego wpisu kliknij OK, jeśli chcesz pozostać kliknij zostań.") preferredStyle:UIAlertControllerStyleActionSheet];
  2. //    [alertController addAction:[UIAlertAction actionWithTitle:__(@"zostań") style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  3. //
  4. //    }]];
  5. //    [alertController addAction:[UIAlertAction actionWithTitle:__(@"OK") style:UIAlertActionStyleCancel handler:^(UIAlertAction *action){
  6. //
  7. //    }]];
  8. //    [self presentViewController:alertController animated:YES completion:nil];
  9.     UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:__(@"Pojawił się nowy wpis\nw audycji") message:__(@"Jeśli chcesz przejść do nowego wpisu kliknij OK, jeśli chcesz pozostać kliknij zostań.") delegate:self cancelButtonTitle:__(@"zostań") otherButtonTitles:__(@"OK"), nil];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement