Private api CTGetSignalStrength() 在 Xcode 7.3 上不工作
Private api CTGetSignalStrength() not working on Xcode 7.3
NSString * CTSIMSupportGetSIMStatus();
int CTGetSignalStrength();
xcode 7.3 在 swift 中使用桥接头出现编译错误,它在以前的版本上运行良好。
像
一样定义自己的objective-c方法
+ (int)getSignalStrength {
return CTGetSignalStrength();
}
并在那里调用 c 样式方法,如 xcode7.3 objective-c class 中的 c 样式方法不调用。
NSString * CTSIMSupportGetSIMStatus();
int CTGetSignalStrength();
xcode 7.3 在 swift 中使用桥接头出现编译错误,它在以前的版本上运行良好。
像
一样定义自己的objective-c方法+ (int)getSignalStrength {
return CTGetSignalStrength();
}
并在那里调用 c 样式方法,如 xcode7.3 objective-c class 中的 c 样式方法不调用。