JHBlockActionSheetItem *item1 = [JHBlockActionSheetItem itemWithTitle:@"1" andBlock:^{
NSLog(@"1");
}];
JHBlcokActionSheet *action = [[JHBlcokActionSheet alloc] initActionSheetWithTitle:@"哈哈"
cancelButtonItem:item3
destructiveButtonItem:item1
otherButtonItems:item2, item3, item4,nil];
[action showInView:self.view];
__weak __typeof(self)weakSelf = self;
JHBlockActionSheet *sheet = [JHBlockActionSheet photoPickerSheetWithTitle:nil
allowsEditing:YES
presentController:self
pickerCompletion:^(UIImage *pickImage) {
weakSelf.imageView.image = pickImage;
}];
[sheet showInView:self.view];