#import "JTSActionSheet.h"
JTSActionSheetTheme *theme = [JTSActionSheetTheme defaultTheme];
theme.titleColor = [Common colorWithTheme];
theme.normalButtonColor = [Common colorWithTheme];
// Setup your buttons
JTSActionSheetItem *buyAll = [JTSActionSheetItem itemWithTitle:@"拍照" action:^{
[self initCamera];
} isDestructive:NO];
JTSActionSheetItem *deleteAll = [JTSActionSheetItem itemWithTitle:@"从相册选择" action:^{
[self initPhoto];
} isDestructive:NO];
JTSActionSheetItem *cancel = [JTSActionSheetItem itemWithTitle:@"取消" action:^{
} isDestructive:NO];
JTSActionSheet *sheet = [[JTSActionSheet alloc] initWithTheme:theme
title:nil
actionItems:@[buyAll, deleteAll]
cancelItem:cancel];
[sheet showInView:self.view];