我是 iOS 新手。我创建了一个简单的应用程序,UIWebview
其中我正在从服务器加载一个文件夹,该文件夹由4 个子文件夹(1. CSS 2. Images 3. Audio 4. Html files)组成,其中我想显示 Html Files 文件夹中的第一个文件 html 文件webview
,然后当用户滑动页面时,我想显示 Html 文件文件夹中的下一个 html 文件.. 这里有可能.. 我是新手iOS请帮助我。
user1534324
问问题
460 次
1 回答
0
滑动效果
这是一个基本代码片段:
UISwipeGestureRecognizer *mSwipeUpRecognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(doSomething)];
[mSwipeUpRecognizer setDirection:(UISwipeGestureRecognizerDirectionUp | UISwipeGestureRecognizerDirectionDown | UISwipeGestureRecognizerDirectionLeft | UISwipeGestureRecognizerDirectionRight)];
[webview addGestureRecognizer:mSwipeUpRecognizer];
[mSwipeUpRecognizer release];
并在 .h 文件中添加:
<UIGestureRecognizerDelegate>
现在在doSomething
方法实现中,更改您的 web NSURL 并将该 url 再次加载到 web 视图。
对于卷曲动画:
以下是一些示例链接:
于 2013-03-23T13:33:38.443 回答