如何显示在Swift中运行的当前类和函数

时间:2014-10-02 17:58:49

标签: swift ios8 metadata xcode6

我想返回类和函数以进行调试。在Objective-C中我会使用以下内容,我如何在Swift中做同样的事情?

Obective-C

if (debug==1) {
    NSLog(@"Running %@ '%@'", self.class,NSStringFromSelector(_cmd));
}

夫特

if debug==1 {
    println("Running: ", self ,__FUNCTION__)
}

在swift中,这将返回如下内容:

(Running: , <myTeamManager.PlayerInformationTableViewController: 0x7fa18bd31680>, viewDidLoad())

但我只想要PlayerInformationTableViewController

1 个答案:

答案 0 :(得分:1)

reflect(self).summary.pathExtension