gpt4 book ai didi

Swift 中的 Objective-C 枚举

转载 作者:搜寻专家 更新时间:2023-10-30 22:04:45 26 4
gpt4 key购买 nike

我在 Objective-C 文件中有以下枚举:

typedef NS_ENUM(NSInteger, countDirection){
countDirectionUp = 0,
countDirectionDown
};

如何在 Swift View Controller 中使用它?我试过这个:

label.countDirection = countDirection.countDirectionDown

但是我得到一个错误:

countDirection.Type does not have a member named countDirectionDown

最佳答案

这些被翻译成

countDirection.Up
countDirection.Count

Swift 尽可能多地删除枚举值与枚举名称相同的字母。在您的情况下,使用名为 countDirection 的枚举和值 countDirectionUp,整个“countDirection”将被删除。它不是必需的,因为您知道您正在使用哪个枚举,从而使您的代码更短。

关于Swift 中的 Objective-C 枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31602745/

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