【ZYShareView】应用中常见的分享/功能菜单面板, 高仿微信, 支持界面的自定义
查看次数:4390
下载次数:506
上传时间:2016-04-04
大小:1 KB
【详细的介绍与用法请移步 https://github.com/zzyspace/ZYShareView 欢迎提出建议与star :)】
只需简单的2步即可快速集成此控件
【1.创建代表每个按钮的模型:】
// 根据需要创建多个item
ZYShareItem *item0 = [ZYShareItem itemWithTitle:@"发送给朋友"
icon:@"Action_Share"
handler:^{ [weakSelf itemAction:@"点击了发送给朋友"]; }];
...
【2.创建shareView并弹出】
ZYShareView *shareView = [ZYShareView shareViewWithShareItems:@[item0, item1, item2, item3, item4, item5]
functionItems:@[item6, item7, item8, item9]];
[shareView show];
收藏