2012-10-01から1ヶ月間の記事一覧

NSURLConnection crush on iOS6

When you using NSURLConnection on iOS6 and receive header field "WWW-Authenticate", It must have realm params like 「WWW-Authenticate:OAuth realm="xxxx"」. Otherwise it will crash. CFNetwork`CFURLProtectionSpaceGetAuthenticationScheme: 0x4…

NSURLConnectionのsendAsynchronousRequest:queue:completionHandler:を使ってさくっとネットワークアクセスしてみる

普段そんなに使わないのでメモ。 - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"https://www.goog…