NSString * CTSIMSupportGetSIMStatus();
int CTGetSignalStrength();
在swift中使用桥接头在xcode 7.3上给出了编译错误,它在以前的版本上工作正常。
答案 0 :(得分:0)
定义您自己的Objective-c方法,如
+ (int)getSignalStrength {
return CTGetSignalStrength();
}
并在那里调用c样式方法,就像在Objective-c类中调用的xcode7.3 c样式方法一样。