LTBounceSheet

程序名称:LTBounceSheet

授权协议: MIT

操作系统: iOS

开发语言: Objective-C

LTBounceSheet 介绍

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];

LTBounceSheet 官网

https://github.com/ltebean/LTBounceSheet

相关编程语言

Acapela TTS 是一个为 iPhone 和 iPad 开发的 TTS 引...
二维码(QR Code)扫描静态库,扫描效率较高。
RegexKitLite 是一个轻量级的 Objective-C 的正则表...
一款基于ASIHttpReques开源的仿迅雷多线程断点续传功...
实现动态检测网络(wifi)状况,不需要用户手动刷新...
使用iphoneSDK官方NSXMLParserDelegate做的简单xml解...