在 Objective C 中,有没有办法从另一个类调用引用 typedef 枚举?

发布于 2024-09-01 12:20:54 字数 481 浏览 3 评论 0原文

据我了解,typedef 枚举是全局范围的,但如果我在 RandomViewController.h 的 @interface 之外创建了一个枚举,我无法弄清楚如何从 OtherViewController.m 访问它。有办法做到这一点吗?

所以... “RandomViewController.h”

#import <UIKit/UIKit.h>

typedef enum {
 EnumOne,
 EnumTwo
}EnumType;

@interface RandomViewController : UIViewController { }

然后... “其他ViewController.m”

-(void) checkArray{
      BOOL inArray = [randomViewController checkArray:(EnumType)EnumOne];
}

It is my understanding that typedef enums are globally scoped, but if I created an enum outside of the @interface of RandomViewController.h, I can't figure out how to access it from OtherViewController.m. Is there a way to do this?

So...
"RandomViewController.h"

#import <UIKit/UIKit.h>

typedef enum {
 EnumOne,
 EnumTwo
}EnumType;

@interface RandomViewController : UIViewController { }

and then...
"OtherViewController.m"

-(void) checkArray{
      BOOL inArray = [randomViewController checkArray:(EnumType)EnumOne];
}

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

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

发布评论

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

评论(2

醉态萌生 2024-09-08 12:20:54

在 OtherViewController.m 中:

#import "RandomViewController.h"

并且您不应该像类型一样命名变量。而是将其命名为 myEnumOne,或者任何您喜欢的名称:)

BOOL inArray = [randomViewController checkArray:(EnumType)myEnumOne];

您能给我们展示 checkArray 方法的声明吗?根据我的理解,应该是

- (BOOL)checkArray:(EnumType)blabla;

在调用方法时您不需要将参数类型转换为 EnumType (我假设它已经是 EnumType 类型)。

In OtherViewController.m:

#import "RandomViewController.h"

And you shouldn't name your variable like the type. Rather name it myEnumOne, or whatever you like :)

BOOL inArray = [randomViewController checkArray:(EnumType)myEnumOne];

Can you show us the declaration of the checkArray method? In my understanding it should be

- (BOOL)checkArray:(EnumType)blabla;

You shouldn't need to typecast the argument to EnumType when calling the method (I'm assuming that it's of the type EnumType already).

比忠 2024-09-08 12:20:54

只需导入标头即可。

Just import the header.

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