iOS webview - 加载多个文件

时间:2013-03-23 13:27:46

标签: iphone ios uiwebview

我是iOS的新手.. 我创建了一个简单的应用程序,UIWebview,我从服务器加载一个文件夹,其中包含 4个子文件夹(1. CSS 2.图像3.音频4.Html文件),我想在webview的Html Files文件夹中显示第一个文件html文件,然后当用户滑动页面时,我想从Html文件夹中显示下一个html文件..是否可能这里..我是iOS新手,请帮助我。

1 个答案:

答案 0 :(得分:0)

滑动效果

以下是基本代码段:

UISwipeGestureRecognizer *mSwipeUpRecognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(doSomething)];

[mSwipeUpRecognizer setDirection:(UISwipeGestureRecognizerDirectionUp | UISwipeGestureRecognizerDirectionDown | UISwipeGestureRecognizerDirectionLeft | UISwipeGestureRecognizerDirectionRight)];

[webview addGestureRecognizer:mSwipeUpRecognizer];

[mSwipeUpRecognizer release];

并在.h文件中添加:

<UIGestureRecognizerDelegate>

现在在doSomething方法实施中,更改您的网络NSURL并再次将该网址加载到网络视图。

对于卷曲动画:

以下是一些示例链接:

How to give page curl animation in webView?

Turn a page (a UIWebView) with an animation