nsurl其實就是我們在瀏覽器上看到的**位址,這不就是乙個字串麼,為什麼還要在寫乙個nsurl呢,主要是因為**位址的字串都比較複雜,包括很多請求引數,這樣在請求過程中需要解析出來每個部門,所以封裝乙個nsurl,操作很方便:
[cpp]view plain
copy
nsurl *url = [nsurl urlwithstring:@
""];
nslog(@"scheme: %@"
, [url scheme]);
nslog(@"host: %@"
, [url host]);
nslog(@"port: %@"
, [url port]);
nslog(@"path: %@"
, [url path]);
nslog(@"relative path: %@"
, [url relativepath]);
nslog(@"path components as array: %@"
, [url pathcomponents]);
nslog(@"parameter string: %@"
, [url parameterstring]);
nslog(@"query: %@"
, [url query]);
nslog(@"fragment: %@"
, [url fragment]);
nslog(@"user: %@"
, [url user]);
nslog(@"password: %@"
, [url password]);
結果:[cpp]view plain
IOS NSURL基本操作
nsurl其實就是我們在瀏覽器上看到的 位址,這不就是乙個字串麼,為什麼還要在寫乙個nsurl呢,主要是因為 位址的字串都比較複雜,包括很多請求引數,這樣在請求過程中需要解析出來每個部門,所以封裝乙個nsurl,操作很方便 nsurl url nsurl urlwithstring nslog sc...
IOS NSURL基本操作
nsurl其實就是我們在瀏覽器上看到的 位址,這不就是乙個字串麼,為什麼還要在寫乙個nsurl呢,主要是因為 位址的字串都比較複雜,包括很多請求引數,這樣在請求過程中需要解析出來每個部門,所以封裝乙個nsurl,操作很方便 nsurl url nsurl urlwithstring nslog ab...
mysql基本操作 MySQL基本操作
mysql中新增使用者,新建資料庫,使用者授權,刪除使用者,修改密碼 注意每行後邊都跟個 表示乙個命令語句結束 1.新建使用者 1.1 登入mysql mysql u root p 密碼 1.2 建立使用者 mysql insert into mysql.user host,user,passwor...