/XEEActionSheet

XEEActionSheet is a wrapper around UIActionSheet with simplified usage. It is especially useful when using multiple action sheets within one view or view controller.

Primary LanguageObjective-CMIT LicenseMIT

Alt text

XEEActionSheet

XEEActionSheet is a wrapper around UIActionSheet with simplified usage. It is especially useful when using multiple action sheets within one view or view controller.

XEEActionSheet* actionSheet = [XEEActionSheet actionSheetWithTitle:@"Choose now" message:@"Read your options carefully..." cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Destroy" otherButtonTitles:@"Process", @"Switch", nil];
[actionSheet handleAction:^(int buttonIndex) {
    NSLog(@"Option chosen %d", buttonIndex);
}];
[actionSheet showInView:self.view];

Contact

Follow XEETech on Twitter (XEE Tech).

Connect with us on LinkedIn (@XEE_Tech).

License

XEEPluralizer is available under the MIT license. See the LICENSE file for more info.