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.
我在 xCode 中有一个详细的应用程序。在主视图控制器中定义了一个数组。在详细视图控制器中,根据该数组中的一个条目,有详细信息。
是否可以从 Detail View Controller 访问数组并更新它们?
如何将数组的引用从主视图控制器传递到详细视图控制器?
在细节控制器中放置一个属性来保存数组。然后以您现在用于传递单个条目的任何方法传递数组引用,didSelectRowAtIndexPath: 用于基于 xib 的应用程序或 prepareForSegue: 如果您有情节提要。