仿写的微信弹出框
使用方法
LWWeChatActionSheet *sheet = [[LWWeChatActionSheet alloc] init];
sheet.contentTitlesSet(@[@"分享到微信",@"QQ",@"分享到空间",@"打开相册",@"照相机"])
.titleSet(@"选择下面的选项")
.show()
.actionSheetBlock = ^(NSInteger buttonIndex) {
NSLog(@"点击了第%ld个",buttonIndex);
};
传送门:github地址:https://github.com/zombieEnginner/LWWeChatActionSheet