gpt4 book ai didi

iphone - 在主窗口中控制来自不同 .h 的对象

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:25:50 24 4
gpt4 key购买 nike

我的应用程序是 objective-c 中基于窗口的应用程序
我有 appdelegate 文件(.h 和 .m)和 controller(.h 和 .m)该程序从 appdelegate 文件加载窗口 View 并显示在 controller 中定义的对象( slider 、标签),因此:
appdelegate 中的 didFinishLaunchingWithOptions Controller 中的标签我只需要知道如何从该函数控制标签。

最佳答案

如果您使用 getter 和 setter 方法将标签设置为属性:

在controller.h中:

{
IBOutlet UILabel *label;
}
@property(nonatomic, retain) IBOutlet UILabel *label;

在 controller.m 中:

@synthesize label;

然后您可以简单地从 controller 的实例化中调用 label:

[controller.label setText:@"For example, you can set the text"];

关于iphone - 在主窗口中控制来自不同 .h 的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7098995/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com