u16suzuの blog

日々学んだことのメモブログです。

2013-07-04から1日間の記事一覧

.pch ファイルで NSStringWithFormat を使う

.pch ファイルで NSStringWithFormat を使うことができる. URLを指定するときに便利 #define BASE_URL @"http://localhost:3000/" // 各機能での接続先URL #define URL_SETTINGS [NSString stringWithFormat:@"%@%@", BASE_URL, @"v1/settings.json"] #defin…

Mac で ファイルの md5 hashをとる

コマンドは以下のとおり $ openssl md5 file.txt

UINavigationBarに一括で画像をあてる

AppDelegate.mで以下のように書けば. アプリ内のすべてのナビゲーションバーに適用される. // Design UIImage *navigationBarImage = [UIImage imageNamed:@"topbar"]; [[UINavigationBar appearance] setBackgroundImage:navigationBarImage forBarMetrics:…

deep copy

deep copy するには copy methodを呼べばよい NSMutableArray *hoge = @[@1, @2, @3].mutableCopy; NSMutableArray *fuga = [[hoge copy] mutableCopy]; hoge[0] = @99; NSLog(@"hoge : %@", hoge); NSLog(@"fuga : %@", fuga); result 2013-07-04 03:26:25.…