https://github.com/jaredchu/jcactionsheet
Action Sheet with check mark like PodCasts app.
https://github.com/jaredchu/jcactionsheet
actionsheet checkmark objc podcast swift
Last synced: 4 months ago
JSON representation
Action Sheet with check mark like PodCasts app.
- Host: GitHub
- URL: https://github.com/jaredchu/jcactionsheet
- Owner: jaredchu
- License: mit
- Created: 2016-11-17T12:14:33.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-05T08:18:41.000Z (almost 9 years ago)
- Last Synced: 2025-05-13T01:05:53.879Z (9 months ago)
- Topics: actionsheet, checkmark, objc, podcast, swift
- Language: Objective-C
- Size: 16.6 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JCActionSheet
Action Sheet with check mark like PodCasts app.


## Usage in Swift:
```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:
```objc
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];
```