Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在、モーダル ビューを作成するアプリに取り組んでおり、モーダル ビューにデータを送信する方法は知っていますが、モーダル ビューから親ビューにデータを送信するにはどうすればよいですか?
従来のメカニズムでは、プロトコルを定義し、モーダル ビューでプロトコルを実装するデリゲートの設定をサポートします。
そこからは簡単です。親ビューがプロトコルを実装し、それ自体をデリゲートとして設定します。次に、モーダル ビューから公開するデータを取得したら、それをデリゲートに渡します。親ビューは、プロトコルの実装を介してそれを受け取ります。
I am looking at the node.js documentation for making a module. http://nodejs.org/api/addons.html
I understand template