标签: objective-c swift
在Objective-C中我喜欢写:
printf("%s", __FUNCTION__)
或
printf("%s", __cmd__)
如何在Swift中完成?
答案 0 :(得分:1)
动机相同
println(__FUNCTION__)
当然没有__cmd__。
__cmd__
另见Macros in Swift?