LTBounceSheet
- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/ltebean/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];
从Python开始学编程
Vamei / 电子工业出版社 / 2016-11-24 / CNY 49.00
改编自Vamei博客的《Python快速教程》。本书以Python为样本,不仅介绍了编程的基本概念,还着重讲解编程语言的主流范式:面向过程、面向对象、面向函数。读者不仅可以轻松学会Python,以后再学习其他编程语言时也会更加容易。一起来看看 《从Python开始学编程》 这本书的介绍吧!
