objective-c

UITextViewPlusPlus

https://github.com/higepon/UITextViewPlusPlus というものを書き始めた。今作っているアプリで使っている。 UITextView は iOS7 で大きく変わったのでググっても新旧の情報が入り乱れていて大変。あと iOS7 リリース直後のバグだらけの時の情報も混ざって…

Kiwi で NSURLConnection の非同期テスト

JSON API を NSURLConnection を使って call している場合の Kiwi でのテスト方法。 describe(@"HogeAPI", ^{ describe(@"createDeck", ^{ context(@"when cant't connect", ^{ it(@"should return nil", ^{ __block id ret; User* user = [User mock]; [[us…

Kiwi をインストール - Objective-C

Getting Started with Kiwi 2.0 · allending/Kiwi Wikiを見ながらインストール。ld: library not found for -llibPods-test と言われるエラーにハマる。Podfile に platform :ios ではなくて platform :ios, '6.0' とバージョンを追加して pod install して…