Skip to content

Instantly share code, notes, and snippets.

@chaitanyaSoni96
Created June 14, 2019 11:07
Show Gist options
  • Save chaitanyaSoni96/149239ba6921ccf8134e9d759df546fb to your computer and use it in GitHub Desktop.
Save chaitanyaSoni96/149239ba6921ccf8134e9d759df546fb to your computer and use it in GitHub Desktop.
UIAlertController
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"JBlues" message:@"Please login to see products" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *okAct = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil];
[alert addAction:okAct];
[self presentViewController:alert animated:true completion:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment