0

Detail View Controller から Master View Controller で定義された配列にアクセスする可能性はありますか? xCode にマスター/ディテール アプリケーションがあります。Master View Controller では、Array が定義されています。Detail View Controller には、この配列の 1 つのエントリに応じた詳細情報があります。

Detail View Controller からアレイにアクセスして更新することはできますか?

配列への参照をマスターからディテールに渡すにはどうすればよいですか?

4

1 に答える 1

1

Is there any link whatsoever between your Master and Detail view?

If so, then you can expose access to the array via making it a "@property" of the Master View Controller that you can access from the Detail view controller.

Here is a related question with answers that may help you out. I can't give you more specific answers than this because you haven't said how you've set up your Master <-> Detail View Controller implementation.

于 2012-04-22T18:27:51.663 に答える