视图堆效果 LTStackView
- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/ltebean/LTStackView
软件介绍
LTStackView 通过 Facebook Pop 做出视图堆的效果。可以自定义视图堆的内容。通过next方法就可以轻松实现。
初始化:
LTStackView *stackView = [[LTStackView alloc]initWithFrame:CGRectMake(0, 0, 320, 480)]; stackView.dataSource = self;
协议实现:
-(UIView*) nextView
{
UIView *view=[[UIView alloc]initWithFrame:CGRectMake(0, 0, 200, 200)];
view.backgroundColor=[UIColor blueColor];
return view;
}
最后调用:
[stackView next];
Web Design in a Nutshell
Jennifer Niederst / O'Reilly Media, Inc. / 2006-02-21 / USD 34.99
Are you still designing web sites like it's 1999? If so, you're in for a surprise. Since the last edition of this book appeared five years ago, there has been a major climate change with regard to web......一起来看看 《Web Design in a Nutshell》 这本书的介绍吧!
