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.
在视图控制器中,我获取了对象视图并通过情节提要放置了 2 个文本字段和 2 个 uibutton。我只想在用户点击 UIbutton 时添加相同的视图,而不会丢失第一个视图的文本字段中的数据。
我如何访问所有视图的数据。
大批
您需要IBOutlets通过控制从情节提要中的视图拖动到视图控制器@interface部分来创建。然后您可以使用它们访问视图的数据。
IBOutlets
@interface
如果您想在用户点击按钮时执行某些操作,您需要IBAction通过控制从情节提要中的按钮拖动到视图控制器@implementation代码中的部分来创建一个。然后您可以在创建的方法中以编程方式添加另一个视图。
IBAction
@implementation