- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
if (dirString)
{
CATransition *animation = [self getAnimation:dirString];
[[self superview] exchangeSubviewAtIndex:0 withSubviewAtIndex:1];
[[[self superview] layer] addAnimation:animation forKey:kAnimationKey];
}
}
大家好我试图使用上面的代码看起来很熟悉它来自Iphone Developer Cookbook,Erica Sandun
我试图实现的是使用她的滑动方法的5种不同视图 上面的代码只有两个视图之间的转换,我将如何更改代码,以便我可以刷过所有五个视图,例如:视图从视图1开始然后用户滑动然后更改为视图2等等和向后 非常感谢您的帮助
答案 0 :(得分:1)
查看Apple关于如何在多个视图之间使用UIScrollView进行分页的示例: