从类方法访问 IB 对象/控件

发布于 2024-12-03 12:14:07 字数 504 浏览 3 评论 0原文

您使用 IB 创建的对象/控件是否可以通过类方法访问?

@Nekto:

@interface CopyController : UIViewController
{
    UIActivityIndicatorView *myActivity;
}

@property (nonatomic, retain) IBOutlet UIActivityIndicatorView *myActivity;
+(void) activityIndicator:(BOOL)flag;

@end

.m 中的这种实现是不允许的,错误是“在类方法中访问实例变量'myActivety'”。

+(void)activityIndicator:(BOOL)flag
{
    if (flag)
        [myActivity startAnimating];
    else
        [myActivity stopAnimating];
}

Are the objects/controls that you created using IB accessible from a class method?

@Nekto:

@interface CopyController : UIViewController
{
    UIActivityIndicatorView *myActivity;
}

@property (nonatomic, retain) IBOutlet UIActivityIndicatorView *myActivity;
+(void) activityIndicator:(BOOL)flag;

@end

This implementation in the .m will not be allowed, the error was "Instance variable'myActivety' accessed in class method".

+(void)activityIndicator:(BOOL)flag
{
    if (flag)
        [myActivity startAnimating];
    else
        [myActivity stopAnimating];
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倦话 2024-12-10 12:14:07

是的,它们是可以访问的。

您应该添加 @property IBOutlet ib_object_class *ib_object_name;,在 IB 中打开该对象设置,并通过在 drop 中选择 ib_object_name 将引用出口设置为 File's Owner向下菜单。

例如,可以在这里找到完整的解释: 创建和连接一个出口

Yes, they are accessible.

You should add @property IBOutlet ib_object_class *ib_object_name;, open that object settings in IB and set reference outlet to File's Owner by selecting ib_object_name in drop down menu.

Full explanation can be found, for example, here : Creating and Connecting an Outlet

俯瞰星空 2024-12-10 12:14:07

您也许可以将出口连接到第一响应者而不是文件的所有者来实现此目的,但我认为您不能从类方法中访问它,因为您的 IBOutlet 属性将是实例级变量。

此处找到了类似的用于将操作链接到多个第一响应者的内容。

You may be able to connect the outlet to the first responder instead of the file's owner to achieve this, but I don't think you can access it from within a class method since your IBOutlet property is going to be an instance-level variable.

Found something similar for linking actions to multiple first responders here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文