iOS
http://stackoverflow.com/questions/24022479/how-would-i-create-a-uialertview-in-swift
iOS でユーザー投稿型(User generated content)のアプリの審査を通すには、「不適切なコンテンツ」をアプリから報告できるようにしないといけない。一番簡単な実装はユーザーが報告ボタンをタップした時に Mail アプリを開いてそこから報告してもらう方法。…
キーボードのサイズ取得のために UIKeyboardFrameBeginUserInfoKey を使っているサンプルがいくつも見つかるけど、UIKeyboardFrameEndUserInfoKey が正しいと思う。
[FBSettings setLoggingBehavior:[NSSet setWithObjects:FBLoggingBehaviorFBRequests, FBLoggingBehaviorFBURLConnections, nil]];
Provisioning Profile / プロビジョニングプロファイルとは?の続き。 具体的な手順 App ID 作成 Push 通知有効にすること Device の登録 新しい Device に変更したこと忘れた Add iOS Certificate Provisioning Profile 作成 証明書作成 iOS App Developmen…
Provisioning Profile は アプリを動かしたいデバイスにインストールする必要がある Provisioning Profile は以下のものからなる。 1つの App ID iPhone Development Certificate (複数可) ユニーク Device ID (複数可) Provision profile に iPhone Develop…
<meta name="apple-itunes-app" content="app-id=555264908"></meta>
didReceiveRemoteNotification: では [[NSNotificationCenter defaultCenter] postNotificationName:@"pushNotification" object:nil userInfo:userInfo]; と NSNotificationCenter に通知。各 ViewController でこの通知を受けて ViewController の変更をす…