iRSSの日記

はてなダイアリーiRSSの日記の続き

2011-12-03から1日間の記事一覧

Newsstandですでにダウンロード中のNSIssueを再ダウンロードしようとすると、エラーになる

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:url]]; [request setTimeoutInterval:60.0f*5.0f ]; NKAssetDownload *assetDownload = [issue addAssetWithRequest:request]; addAssetWithRequestのrequestで指…

NSOperationのThreadから、MainThreadにNotificationを送りUIを更新したい

NSBlockOperationのブロック内からpostNotificationNameしてみる ViewController側で、このNotificationを受けてUIを変更しても、変化が画面に反映しない。 NSBlockOperation* theOp = [NSBlockOperation blockOperationWithBlock: ^{ [[NSNotificationCente…