iRSSの日記

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

iOSSDK

UICollectionViewメモ

チュートリアル ソースコードをコピペで書きながら、全体像をつかめる Flickrのビューアを作るサンプル http://www.raywenderlich.com/22324/beginning-uicollectionview-in-ios-6-part-12 http://www.raywenderlich.com/22417/beginning-uicollectionview-i…

Newsstandバックグラウンド自動更新時の注意

ダウンロード後、別スレッドで解凍しようとしたが、これは、動かない。 メインスレッドでうごかす必要がある。 unzipは動いていた。 unzipのあと、coreDataを更新するのだが、問題はそちらか?以下は、ログ。 ちなにみ、ログは、Xcodeのオーガナイザーのデバ…

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

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

SenTestを使って非同期のテスト

以下のような感じで、うごいているっぽいのだけど、本当にこんなので、よいのか?↓たぶん、だめみたい。 [[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:1.0]];をよぶと、 [mm updateNewsstandIssues];が2重起動されるよ…

アプリ内ストアの定期購読型(Auto-renewable Subscriptions)に関するメモ

Sandboxでのテスト Sandboxの世界では、時間が早回しですすむ。 Actual Duration Sandbox Duration 1 week 3 minutes 1 month 5 minutes 2 months 10 minutes 3 months 15 minutes 6 months 30 minutes 1 year 1 hour 1年が1時間。1年(1時間)までで、そ…

Newsstandメモ

自分用のメモ。 サンプルソース等は、後ほど、アップする予定 参考にしたいページ https://support.urbanairship.com/customer/portal/articles/140033-adding-newsstand-support-to-your-app サンプルコードがある、流れがつかめる。 WWDC2011 video Buildi…

willAnimateRotationToInterfaceOrientation直後のview.frameとview.boudsがは向きが異なる?

メモ - (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration { NSString *orient; switch(interfaceOrientation) { case UIInterfaceOrientationLandscapeRight: orient = @"…