91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

[IOS]UIWebView 請求網絡頁面或者加載本地資源頁面

發布時間:2020-06-15 00:46:16 來源:網絡 閱讀:537 作者:蓬萊仙羽 欄目:移動開發

UIWebView是一個能夠顯示網頁的IOS視圖控件,我們可以用它來訪問一個網站。下面是具體的實例:

操作步驟:

1.首先在xib文件中拖放一個UIWebView控件到view中

2.將下載的頁面以及頁面資源加載到項目中,但必須選擇Create folder references for any added folders,然后知道文件在項目中是藍色顯示,而不是×××顯示

3.將webView的Delegate拖到File's Owner,繼承UIWebView的Delegate協議,并且實現他的協議

[IOS]UIWebView 請求網絡頁面或者加載本地資源頁面

ViewController.h:

#import <UIKit/UIKit.h>  @interface DXWViewController : UIViewController<UIWebViewDelegate> @property (retain, nonatomic) IBOutlet UIWebView *webview; @property(nonatomic,retain) UIAlertView *alert; @end

ViewController.m:

#import "DXWViewController.h"  @interface DXWViewController ()  @end  @implementation DXWViewController  - (void)viewDidLoad {     [super viewDidLoad]; 	NSURL *url = [NSURL URLWithString:@"http://www.baidu.com"];     NSURLRequest *request = [NSURLRequest requestWithURL:url];     //[self.webview loadRequest:request];          //加載本地資源,html頁面     NSString *str = [[NSBundle mainBundle] pathForResource:@"百度圖片—全球最大中文圖片庫" ofType:@"html"];          str = [NSString stringWithContentsOfFile:str encoding:NSUTF8StringEncoding error:nil];     NSLog(@"%@",str);     [self.webview loadHTMLString:str baseURL:[[NSBundle mainBundle] bundleURL]]; }  - (void)didReceiveMemoryWarning {     [super didReceiveMemoryWarning];     // Dispose of any resources that can be recreated. }  - (void)dealloc {     [_webview release];     [_alert release];     [super dealloc]; }  -(void)webViewDidFinishLoad:(UIWebView *)webView {     [self.alert dismissWithClickedButtonIndex:0 animated:YES]; }  -(void)webViewDidStartLoad:(UIWebView *)webView {     self.alert = [[UIAlertView alloc] initWithTitle:@"Loading..." message:nil delegate:nil cancelButtonTitle:nil otherButtonTitles:nil];     [self.alert show];          UIActivityIndicatorView *aiv = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];     aiv.center = CGPointMake(self.alert.bounds.size.width/2, self.alert.bounds.size.height/2);     [aiv startAnimating];     [self.alert addSubview:aiv]; }  @end


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平舆县| 故城县| 泰兴市| 广州市| 东乡县| 曲阜市| 乌兰浩特市| 镇雄县| 菏泽市| 镇康县| 鄂温| 阜南县| 叙永县| SHOW| 宣化县| 白城市| 田林县| 甘肃省| 石柱| 巴楚县| 台东县| 靖远县| 河西区| 宁晋县| 车险| 南木林县| 吉隆县| 临颍县| 行唐县| 潼南县| 开化县| 银川市| 池州市| 略阳县| 乐清市| 安多县| 建平县| 炎陵县| 应用必备| 孟州市| 花莲县|