0

我是新的 IOS 和 XCode。我在我的 iPhone 应用程序中添加了一些 bottun,现在我想向它们添加功能。我找到了这个教程

问题是当我将按钮拖到 ViewControler.h 时,它会弹回来。

请指教。谢谢,那鸿

4

2 回答 2

4

Ctrl button + drag the your button到 viewController.h 然后"Insert Outlet and Outlet Collection"会出现。之后,您将手指移开鼠标,您将获得Outlet有关连接的框。它具有连接、名称、类型属性。我想这会对你有所帮助。

于 2012-05-16T11:12:46.780 回答
-1

您可以制作 UIButtons 或任何 UIControl 两种方式之一

  1. 通过以编程方式
  2. 通过 .xib 文件

我认为您在谈论第二种方法。

在第二种方法中,您在课堂上使用 UIButtons:

@interface className : UIViewController{ 

  IBOutlet UIButton *buttonName;

}

现在您必须单击 .xib 文件,然后您必须选择响应者下方的文件;在打开连接连接检查器之后。现在您可以将 UIButtons 拖放到 .xib 文件上,并在连接检查器中显示的 UIButton 和 .xib 的 UIBUtton 之间建立链接。

于 2012-05-16T11:15:42.857 回答