A like weChat ActionSheet
Like weChat App ActionSheet
This Demo is based in HJCActionSheet, As a requestment, I add a new titlte, such as UIActionSheet.
基于HJCActionSheet,由于需求,我添加了ActionSheet title,但是你依然可以用如同微信那样的提示框,所以搬运过来,学习交流,注Author(原作者):huangxisu,有问题请联系@Sauchye。
- (instancetype)initWithTitle:(NSString *)title
delegate:(id<HJCActionSheetDelegate>)delegate
cancelButtonTitle:(NSString *)cancelButtonTitle
otherButtonTitles:(NSString *)otherButtonTitles, ... NS_REQUIRES_NIL_TERMINATION;
You can drag HJCActionSheet File to your Project
HJCActionSheet *sheet = [[HJCActionSheet alloc] initWithTitle:@"HJCActionSheet" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"相册", @"照片", nil];
[sheet show];
#pragma mark - HJCActionSheetDelegate
- (void)actionSheet:(HJCActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex;
HJCActionSheet is under MIT License. See LICENSE file for more information.