Entries from 2012-09-15 to 1 day

プッシュ通知実装した

まず全体像の把握に公式ドキュメント(PDF) をひと通り読んだ。その後【iPhone】Push Notificationの実装方法 を読んで実装。 プロバイダは SSL の利用が必須で簡単にするために Ruby で実装して Scheme から spawn して呼び出している。通知の対象が増えた…

push 通知時の didReceiveRemoteNotification: から UINavigationController で pop しても効かない件

didReceiveRemoteNotification: では [[NSNotificationCenter defaultCenter] postNotificationName:@"pushNotification" object:nil userInfo:userInfo]; と NSNotificationCenter に通知。各 ViewController でこの通知を受けて ViewController の変更をす…