Popularity
0.3
Stable
Activity
0.0
Stable
2
2
0

Programming language: Objective-C
License: MIT License
Tags: UI     Menu     Objective C     Action Sheet    

JCActionSheet alternatives and similar libraries

Based on the "Menu" category.
Alternatively, view JCActionSheet alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of JCActionSheet or a related project?

Add another 'Menu' Library

README

JCActionSheet

Action Sheet with check mark like PodCasts app.

JCActionSheet JCActionSheet

Usage in Swift:

let actionSheet = JCActionSheet.init(title: nil, delegate: self, cancelButtonTitle: "Cancel", 
destructiveButtonTitle: "Delete", otherButtonTitles: ["Button 1","Button 2","Button 3"], 
textColor: UIColor.black, checkedButtonIndex:0);

self.present(actionSheet, animated: true, completion: nil);

Usage in ObjectiveC:

JCActionSheet *actionSheet = [[JCActionSheet alloc]initWithTitle:nil delegate:self cancelButtonTitle:@"Cancel" 
destructiveButtonTitle:nil otherButtonTitles:@[@"Button 1",@"Button 2",@"Button 3"] 
textColor:[UIColor blackColor] checkedButtonIndex:0];

[self presentViewController:actionSheet animated:YES completion:nil];