有谁知道如何使用webview 这个应用程序是用xcode完成的,我是从互联网上学习的 但是当我点击下载链接 它会在app中打开文件,但我无法返回 上一页,除了关闭app&amp;重新启动 那么我应该添加什么来让应用程序返回上一页 这是我的应用, viewcontroller.h viewcontroller.m #import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@property (weak, nonatomic) IBOutlet UIWebView *webview;
@end
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
NSURL *url = [NSURL URLWithString:@"http://mywebsite/index.php"];
[self.webview loadRequest:[NSURLRequest requestWithURL:url]];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end