2010-03-01から1ヶ月間の記事一覧
HTTPレスポンスのヘッダ部文の受信完了時に呼び出される connection:didReceiveResponse: の中で NSHTTPURLResponse にキャストした response からステータスコードを取得しインスタンス変数にセットし、HTTPレスポンス受信完了時に呼ばれる connectionDidFi…
twitterのgemをインストールしようとしたらRubyGemsの1.3.1より大きくないとインストールできないよーと言われたので、Snow LeopardのRubyGemsのバージョンを1.3.1から最新の1.3.6へアップデートした。何度やってもやり方を忘れるのでいいかげんメモしておく…
$ defaults write com.apple.finder AppleShowAllFiles TRUE $ killall FinderでOK。
comps = [[NSDateComponents alloc] init]; [comps setYear:2009]; [comps setMonth:10]; [comps setDay:11]; NSLog(@">>>%@", [calendar dateFromComponents:comps]);こんな感じ。
NSDateComponents *comps = [calendar components:NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit fromDate:[NSDate date]]; NSLog(@">>>%@", [calendar dateFromComponents:comps]);CalendarComponentsを生成する時にcomponents:で指定した…