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.
我不确定我做了什么,但是当我将一个按钮拖到头文件中并单击连接时,只有插座和插座集合,没有动作。我试图打开另一个 x 代码项目,我可以制作一个带有操作的按钮,但不能制作一个包含我所有代码的按钮。
如果您有两个相同类的 nib 文件,则需要为您的 nib 文件选择类。选择您的笔尖文件>选择文件>选择类[图片1]
然后将您的插座连接到视图 [图片 2]。现在您将每个项目与您的类对象连接起来......
快乐的编码...
只需在您的代码中创建一个 IBAction 方法...
- (IBAction)buttonPressed:(UIButton *)sender;
这将提醒编译器您希望某个操作显示在连接检查器中。