我不能用webview

时间:2017-03-31 06:34:09

标签: ios xcode pdf webview viewcontroller

有谁知道如何使用webview 离开pdf

这个应用程序是用xcode完成的,我是从互联网上学习的

但是当我点击下载链接

时,我遇到了问题

它会在app中打开文件,但我无法返回

上一页,除了关闭app&重新启动

那么我应该添加什么来让应用程序返回上一页

这是我的应用,

viewcontroller.h

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController

@property (weak, nonatomic) IBOutlet UIWebView *webview;

@end

viewcontroller.m

#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

0 个答案:

没有答案