使用多个 NSUInteger 枚举作为方法的参数

发布于 2024-09-12 17:39:00 字数 130 浏览 1 评论 0原文

我正在尝试创建一个与 NSView 的 setAutoresizingMask: 方法类似格式的方法。我希望有人能够指定我在枚举中声明的多个值(NSHeightSizes | NSWidthSizes),就像在自动调整大小掩码中一样。我该怎么做?

I'm trying to make a method with a similar format to the setAutoresizingMask: method of NSView. I want to have someone be able to specify multiple values that i declared in my enum (NSHeightSizable | NSWidthSizable) like in autoresizing mask. How can I do this?

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

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

发布评论

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

评论(1

南街九尾狐 2024-09-19 17:39:00

首先,在标头中声明您的标志:

enum
{
    AZApple = (1 << 0),
    AZBanana = (1 << 1),
    AZClementine = (1 << 2),
    AZDurian = (1 << 3)
};

typedef NSUInteger AZFruitFlags;

(1 << 0)(1 << 3) 表示您可以定义的整数中的单个位。可以“屏蔽”进出整数。例如,假设 NSUInteger 是 32 位,并且有人选择了苹果和榴莲,那么整数将如下所示:

0000 0000 0000 0000 0000 0000 0000 1001
                                   |  |- Apple bit
                                   |---- Durian bit

通常,您的方法需要采用无符号整数参数:

- (void) doSomethingWithFlags:(AZFruitFlags) flags
{
    if (flags & AZApple)
    {
        // do something with apple

        if (flags & AZClementine)
        {
            // this part only done if Apple AND Clementine chosen
        }
    }

    if ((flags & AZBanana) || (flags & AZDurian))
    {
        // do something if either Banana or Durian was provided
    }
}

First, declare your flags in a header:

enum
{
    AZApple = (1 << 0),
    AZBanana = (1 << 1),
    AZClementine = (1 << 2),
    AZDurian = (1 << 3)
};

typedef NSUInteger AZFruitFlags;

The (1 << 0) through to (1 << 3) represent single bits in an integer that you can “mask” in and out of an integer. For example, assuming NSUInteger is 32-bits, and someone has chosen both apple and durian, then the integer would look like this:

0000 0000 0000 0000 0000 0000 0000 1001
                                   |  |- Apple bit
                                   |---- Durian bit

Typically your method needs to take an unsigned integer argument:

- (void) doSomethingWithFlags:(AZFruitFlags) flags
{
    if (flags & AZApple)
    {
        // do something with apple

        if (flags & AZClementine)
        {
            // this part only done if Apple AND Clementine chosen
        }
    }

    if ((flags & AZBanana) || (flags & AZDurian))
    {
        // do something if either Banana or Durian was provided
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文