gpt4 book ai didi

iphone - Swift - 在 Swift 中使用#define

转载 作者:搜寻专家 更新时间:2023-10-31 22:36:23 25 4
gpt4 key购买 nike

<分区>

我有一个 Common.h 定义如下:

// Get UIColor from Hex value
#define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]
#define CellTextColor UIColorFromRGB((uint32_t) 0x217EB5)

我希望能够使用 CellTextColor 在 Swift 中进行着色。但它不允许我运行宏。只有当我有 #define value @"string" 时,它才能在 Swift 中工作。

我还需要在这里做些什么吗?

我阅读了以下链接:

How to use Objective-C code with #define macros in Swift

https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/InteractingWithCAPIs.html

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