视图堆效果 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];
Design Accessible Web Sites
Jeremy Sydik / Pragmatic Bookshelf / 2007-11-05 / USD 34.95
It's not a one-browser web anymore. You need to reach audiences that use cell phones, PDAs, game consoles, or other "alternative" browsers, as well as users with disabilities. Legal requirements for a......一起来看看 《Design Accessible Web Sites》 这本书的介绍吧!
