iOS/NSURLConnection
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
#contents
&tag(iOS);
** Tips [#e0918b80]
- Blocksを使うNSURLConnectionのイディオム (2012/2/10)
[NSURLConnection sendAsynchronousRequest:request
queue:[NSOperationQueue...
completionHandler:^(NSURLResponse *...
if([(NSHTTPURLResponse*)respons...
// do something here.
dispatch_async(dispatch_get...
// update UI here.
});
}
}];
終了行:
#contents
&tag(iOS);
** Tips [#e0918b80]
- Blocksを使うNSURLConnectionのイディオム (2012/2/10)
[NSURLConnection sendAsynchronousRequest:request
queue:[NSOperationQueue...
completionHandler:^(NSURLResponse *...
if([(NSHTTPURLResponse*)respons...
// do something here.
dispatch_async(dispatch_get...
// update UI here.
});
}
}];
ページ名: