Web页面加载

//  WebViewController.m

#import "WebViewController.h"

@interface WebViewController () {
    UIWebView *webView;
}

@end

@implementation WebViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    //网页
    /*
    //方法1 1.WebView 2.request 3.loadRequest
    webView = [[UIWebView alloc]initWithFrame:self.view.bounds];
    [self.view addSubview:webView];
    NSString *url = @"https://www.jianshu.com";
    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:url]];
    [webView loadRequest:request];
     */
    //方法2 UIApplication 直接打开浏览器,而不是在应用的页面上显示
    [[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"https://www.jianshu.com"] options:nil completionHandler:nil];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


@end

你可能感兴趣的:(Web页面加载)