如何在swift 3.0中编写这段代码,特别是如何在swift3中使用Macro?

时间:2017-02-06 10:35:19

标签: ios objective-c swift3.0.2

如何在swift 3.0中编写此代码?

NSSTring *countString=[NSString stringWithFormat:@"%d %@",count,EDIT_CHAR];

其中, EDIT_CHAR 是一个Macro& count是整数。

1 个答案:

答案 0 :(得分:1)

Swift避难所是一个预处理器,但你可以创建一个包含所有常量或标志的结构。

struct MyAppConstants {
 static let editChar = "f"
// Etc...
}

您可以将其称为MyAppConstants.editChar
您的问题被标记为swift,但您发布的代码是ObjC。