iPhone:通过翻转转换打开本地html页面
嗨,
我正在使用以下代码打开 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在将 webview 作为子视图添加到 self.view 后添加此代码。
Add this code after you add your webview as subview to self.view.