關聯delegate
在新建工程的viewcontroller裡拖放乙個webview,並用autolayout 上下左右約束,然後長按control鍵,滑鼠按住webview拖向對應的控制器關聯相關delegate
建立webview物件
用拖拽**拖個 mywebview物件
#import
#import
@inte***ce
viewcontroller : nsviewcontroller
@property (weak) iboutlet webview *mywebview;
@end
載入url路徑
- (void)viewdidload
如圖:
常用方法
//重新整理
[self[self
.mywebview reload:self];
.mywebview goback:self];
//返回前一頁
[self
.mywebview goforward:self];
常用delegate
//獲取每次載入頁面的request
- (void)webview:(webview *)webview decidepolicyformimetype:(nsstring *)type
request:(nsurlrequest *)request
frame:(webframe *)frame
decisionlistener:(id
)listener
//獲取載入頁面的title
- (void)webview:(webview *)sender didreceivetitle:(nsstring *)title forframe:(webframe *)frame
//載入完成
- (void)webview:(webview *)sender didfinishloadforframe:(webframe *)frame
//載入失敗
- (void)webview:(webview *)sender didfailloadwitherror:(nserror *)error forframe:(webframe *)frame
Python基礎學習 第三彈
向內看自己,永遠看自己的進步!好!開始!五 函式 def定義函式,函式分為有無引數 有無返回值。函式先後順序執行,先定義函式在呼叫函式。函式的本質是乙個位址,函式的引數可以為另乙個函式,函式作為變數時不帶括號。還可以利用返回值作為引數。帶括號的函式的型別是函式的返回值型別。函式可以有多個返回值。re...
FPGA學習筆記第三彈
fpga學習筆記第三彈 1 同步復位和非同步復位 說實話這個問題在我沒有看書時候,我一直以為是一樣的沒有什麼區別。那他們到底有何不同之處呢 同步復位的邏輯 always posedge clk if rst b 0 else a b 非同步復位邏輯 always posedge clk or neg...
web前端學習 第三天
的組成部分 標題 表頭 主體 表尾 table定義乙個 caption定義 的標題 thead定義表頭的部分 tbody定義 的主體 資料 部分 tfoot定義表尾,一般來顯示彙總資訊 tr定義一行 thtd來定義資料項 單元格 th 一般用於表頭,有加粗的樣式.td 一般用於主體部分,沒有加粗的樣...