美文网首页iOS
仿微信底部弹出

仿微信底部弹出

作者: _codebo | 来源:发表于2017-03-22 16:04 被阅读118次

一个简单的微信底部弹出,使用简单,方便扩展。

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];
弹出GIF.gif
详细实现请移步 GitHub

相关文章

网友评论

    本文标题:仿微信底部弹出

    本文链接:https://www.haomeiwen.com/subject/gqbonttx.html