0

我有这个带有两个 ViewController 的项目。这很简单。在第二个窗口中,我只想要一个按钮来执行操作(链接到 iTunes 商店)。我将代码添加到我的 .h 和 .m 文件中,但无法将操作链接到第二个窗口中的按钮。但我可以进入第一个……我发誓我浏览和搜索过,但我找不到这样的答案。应该很容易,不是吗?谢谢大家!!

4

1 回答 1

0

如果您IBAction在一个 ViewController 中创建一个,它将不会从另一个 ViewController 中看到。这只是 ViewControllers 的本质。如果你愿意,你可以让第二个类继承另一个类的方法和变量。您可以通过更换来做到这一点

@interface SecondViewController: UIViewController {

@interface SecondViewController: FirstViewController { 

在 SecondViewController.h

(如果出现错误,请#import "FirstViewController.h"在类的最顶部添加)

于 2013-02-15T19:01:09.617 回答