私有api CTGetSignalStrength()不适用于Xcode 7.3

时间:2016-04-04 06:01:46

标签: ios iphone-privateapi bridging-header xcode7.3 swift2.2

NSString * CTSIMSupportGetSIMStatus();
int CTGetSignalStrength();

在swift中使用桥接头在xcode 7.3上给出了编译错误,它在以前的版本上工作正常。

1 个答案:

答案 0 :(得分:0)

定义您自己的Objective-c方法,如

+ (int)getSignalStrength {
     return CTGetSignalStrength();
}

并在那里调用c样式方法,就像在Objective-c类中调用的xcode7.3 c样式方法一样。