Alerts and action sheets in iOS 8
Before iOS 8, if you wanted to alert the user about something, you would use an UIAlertView like this: UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@”Pre iOS 8 style” message:@”Old style alert” delegate:self cancelButtonTitle:@”Cancel” otherButtonTitles:@”OK”, nil]; [alertView show]; In iOS 8, Continue reading Alerts and action sheets in iOS 8