使用多个 NSUInteger 枚举作为方法的参数
我正在尝试创建一个与 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,在标头中声明您的标志:
(1 << 0)
到(1 << 3)
表示您可以定义的整数中的单个位。可以“屏蔽”进出整数。例如,假设 NSUInteger 是 32 位,并且有人选择了苹果和榴莲,那么整数将如下所示:通常,您的方法需要采用无符号整数参数:
First, declare your flags in a header:
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, assumingNSUInteger
is 32-bits, and someone has chosen both apple and durian, then the integer would look like this:Typically your method needs to take an unsigned integer argument: