我正在尝试编译一段代码(使用一些 C++ 和 Objective-C)并获得与typedef
可在 SKDownload.h 中的 Apple StoreKit 框架中找到的相关的编译错误:
typedef enum : NSInteger
{
SKDownloadStateWaiting,
SKDownloadStateActive,
SKDownloadStatePaused,
SKDownloadStateFinished,
SKDownloadStateFailed,
SKDownloadStateCancelled
}
SKDownloadState;
位的含义是什么: NSInteger
?
如果我摆脱: NSInteger
代码编译并运行良好,但我怀疑我是否应该进行这种破解。