Guest User

Untitled

a guest
Aug 15th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. line breaks in alert messages
  2. "alertMessage" = "This is my message: 1 2 3. And another one: 5 6 7";
  3.  
  4. NSString *asd = NSLocalizedString (@"alertMessage", @"");
  5. NSString *alertTitle = NSLocalizedString (@"alertTitle", @"");
  6.  
  7. UIAlertView *alert = [[UIAlertView alloc] initWithTitle:alertTitle message:asd delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
Add Comment
Please, Sign In to add comment