お?いけるくさい?

iPhoneアプリエンジニアのたまごです。いっちょまえエンジニア目指してちいさな発見や学んだことを覚え書きしていきます!Objective-C/iOS/開発

2012-11-12から1日間の記事一覧

NSLogを簡単に消しましょ!(マクロ定義)

.pch ファイルに以下のマクロを定義します。 #if DEBUG #if !defined(NSLog) #define NSLog( m, args... ) NSLog( m, ##args ) #endif #else #if !defined(NSLog) #define NSLog( m, args... ) #endif #endif ログを出したくないときは Build Settings > PRO…

libxml2をXcodeに組み込むとき

BuildPhase から libxml2.dylibを追加したにも関わらず、エラーが消えない! というときは BuileSetting > Search Path > Header Search Pathに ${SDKROOT}/usr/include/libxml2 を書かないとエラーが消えませんのでご注意。

NavigationBarの戻るボタン

●ボタン自体表示させたくないとき(表示させたくないViewController内で) [self.navigationItem setHidesBackButton:YES]; ●ボタンの 中の文字を変更させたいとき(変更したい1こ前のViewontroller内で) UIBarButtonItem *backItem = [[UIBarButtonItemal…