iPhone:通过翻转转换打开本地html页面

发布于 2024-11-04 23:51:08 字数 557 浏览 0 评论 0原文

嗨,

我正在使用以下代码打开 WebView。它打开苹果网站时没有任何动画。我想打开带有动画的本地 html 页面(例如翻转转换),并且想要有一个“后退”按钮,以便我可以再次转到我的主应用程序。有人可以帮我解决这个问题吗?

CGRect frame = [UIScreen mainScreen].bounds;
UIWebView *webView = [[UIWebView alloc] initWithFrame:frame];
[webView setBackgroundColor:[UIColor whiteColor]];
NSString *urlAddress = @"www.apple.com";
NSURL *url = [NSURL URLWithString:urlAddress];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[webView loadRequest:requestObj];
[self.view addSubview:webView];
[webView release];

谢谢。

HI,

I am using following code to open WebView. It opens Apple site without any animation. I want to open local html page with animation(e.g. flip transformation) and want to have a Back button so that I can go to my main aplication again. Could anyone please help me with this.

CGRect frame = [UIScreen mainScreen].bounds;
UIWebView *webView = [[UIWebView alloc] initWithFrame:frame];
[webView setBackgroundColor:[UIColor whiteColor]];
NSString *urlAddress = @"www.apple.com";
NSURL *url = [NSURL URLWithString:urlAddress];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[webView loadRequest:requestObj];
[self.view addSubview:webView];
[webView release];

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不醒的梦 2024-11-11 23:51:08

在将 webview 作为子视图添加到 self.view 后添加此代码。

    [UIView beginAnimations:nil context:NULL];
     [UIView setAnimationDelay:    0.0f ];       // in seconds  
     [UIView setAnimationDuration: 0.5f ];       // in seconds
     [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight 
                           forView:self.view 
                             cache:YES]; 

         [self.view addSubview:webView];

     [UIView commitAnimations ];

Add this code after you add your webview as subview to self.view.

    [UIView beginAnimations:nil context:NULL];
     [UIView setAnimationDelay:    0.0f ];       // in seconds  
     [UIView setAnimationDuration: 0.5f ];       // in seconds
     [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight 
                           forView:self.view 
                             cache:YES]; 

         [self.view addSubview:webView];

     [UIView commitAnimations ];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文