翻页效果的实现采用的是AFKPageFlipper
使用时先导入AFKPageFlipper
http://download.youkuaiyun.com/detail/rylt2011/5586259
然后导入QuartzCore.framework
遵循AFKPageFlipperDataSource协议
在viewDidLoad中
self.view.autoresizesSubviews = YES;
self.view.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
flipper = [[[AFKPageFlipper alloc] initWithFrame:self.view.bounds] autorelease];
flipper.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
flipper.dataSource = self;
flipper.backgroundColor = [UIColor greenColor];
[sel