在我的 Obj-C 文件中,我有这个静态成员和 getter :
//******* DBASplashViewController.m ********
static SWRevealViewController *staticRVC;
+ (SWRevealViewController*)currentSWRevealViewController
{
return staticRVC;
}
//******* DBASplashViewController.h ********
+ (SWRevealViewController*)currentSWRevealViewController;
在我的快速代码中,我在这一行有一个错误:
let SWVC = DBASplashViewController.currentSWRevealViewController
Error :
*DBASplashViewController has no member currentSWRevealViewController*
编辑 :
这是我的桥接文件:
#import "DBASplashViewController.h"
如您所见,DBASplashViewController 可以由 XCode 完美解释,但不是静态方法:
我做错了什么?