LTBounceSheet弹出视图插件

联合创作 · 2023-09-27 02:19

LTBounceSheet是具有bounce效果的action sheet。

使用方法:

// construct the action sheet
self.sheet = [[LTBounceSheet alloc]initWithHeight:250 bgColor:color];

UIButton * option1 = [self produceButtonWithTitle:@"take photo"];
option1.frame=CGRectMake(15, 30, 290, 46);
[self.sheet addView:option1];

UIButton * option2 = [self produceButtonWithTitle:@"choose existing photo"];
option2.frame=CGRectMake(15, 90, 290, 46);
[self.sheet addView:option2];

UIButton * cancel = [self produceButtonWithTitle:@"cancel"];
cancel.frame=CGRectMake(15, 170, 290, 46);
[self.sheet addView:cancel];


//toggle the sheet
[self.sheet toggle];

浏览 1
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报