# SYActionSheetView **Repository Path**: reesun1130/SYActionSheetView ## Basic Information - **Project Name**: SYActionSheetView - **Description**: /** SYActionSheetView实现了类似于UIActionSheet的效果,简单易用,完美支持IOS5.0及以上版本。 用法: SYActionSheetView *actv = [[SYActionSheetView alloc] initWithTitle:nil cancelButtonTitle:@"cancle" otherButtonTitles:@"action1",@"action2",nil]; actv.syActionSheetActionBlock = ^(UIButton *actionBtn){ if (actionBtn.tag == kBtnCaccleTag + 1) { SYLog(@"%@",actionBtn.titleLabel.text); } else if (actionBtn.tag == kBtnCaccleTag + 2) { SYLog(@"%@",actionBtn.titleLabel.text); } }; [actv showSYActionSheet]; */ - **Primary Language**: Objective-C - **License**: Not specified - **Default Branch**: master - **Homepage**: https://github.com/reesun1130/SYActionSheetView - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2015-04-02 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: ios-modules **Tags**: None ## README # SYActionSheetView SYActionSheetView实现了类似于UIActionSheet的效果,简单易用,完美支持IOS5.0及以上版本。 用法: SYActionSheetView *actv = [[SYActionSheetView alloc] initWithTitle:nil cancelButtonTitle:@"cancle" otherButtonTitles:@"action1",@"action2",nil]; actv.syActionSheetActionBlock = ^(UIButton *actionBtn){ if (actionBtn.tag == kBtnCaccleTag + 1) { SYLog(@"%@",actionBtn.titleLabel.text); } else if (actionBtn.tag == kBtnCaccleTag + 2) { SYLog(@"%@",actionBtn.titleLabel.text); } }; [actv showSYActionSheet]; # 效果如下: ![image](https://github.com/reesun1130/SYActionSheetView/raw/master/SYActionSheetView/syactionsheet.png)