亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

[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

故城县| 剑河县| 泾阳县| 卢氏县| 都江堰市| 咸丰县| 浠水县| 广昌县| 萝北县| 盘山县| 略阳县| 靖安县| 平乡县| 隆安县| 邳州市| 邵东县| 临潭县| 饶平县| 行唐县| 昌宁县| 长岭县| 郯城县| 布拖县| 龙里县| 西乡县| 桐梓县| 双流县| 淮阳县| 闸北区| 阿尔山市| 五家渠市| 临夏县| 丹寨县| 友谊县| 运城市| 修文县| 海宁市| 晋中市| 即墨市| 任丘市| 嘉义市|