仿微信底部弹出
2017-03-22 本文已影响118人
_codebo
一个简单的微信底部弹出,使用简单,方便扩展。
NSArray *title = @[@"_codeBo", @"拍摄" , @"从相册选择"];
CWActionSheet *sheet = [[CWActionSheet alloc] initWithTitles:title clickAction:^(CWActionSheet *sheet, NSIndexPath *indexPath) {
NSLog(@"点击了%@", title[indexPath.row]);
self.label.text = title[indexPath.row];
}];
[sheet show];
![](https://img.haomeiwen.com/i4999136/eac98df9f44c4f61.gif)
详细实现请移步 GitHub