我需要使用Swift获取CPU温度,但除了this之外我找不到任何信息。
我认为我应该使用IOKit.framework但是没有太多关于它的信息。
答案 0 :(得分:7)
使用https://github.com/lavoiesl/osx-cpu-temp/blob/master/smc.c我得到了它的工作。你必须做一些事情:
将main()
简化为其他内容:
double calculate()
{
SMCOpen();
double temperature = SMCGetTemperature(SMC_KEY_CPU_TEMP);
SMCClose();
temperature = convertToFahrenheit(temperature);
return temperature;
}
写一个ObjC包装器:
#import "SMCObjC.h"
#import "smc.h"
@implementation SMCObjC
+(double)calculateTemp {
return calculate();
}
@end
将标题添加到Swift桥接标题中。
//
// Use this file to import your target's public headers that you would like to expose to Swift.
//
#import "SMCObjC.h"
如果应用是沙盒,请为AppleSMC添加安全豁免:
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.files.user-selected.read-only</key>
<true/>
<key>com.apple.security.temporary-exception.sbpl</key>
<array>
<string>(allow iokit-open)</string>
<string>(allow iokit-set-properties (iokit-property "AppleSMC"))</string>
<string>(allow mach-lookup (global-name "com.apple.AssetCacheLocatorService"))</string>
</array>
</dict>
</plist>
从Swift调用它。
import Cocoa
class ViewController: NSViewController {
override func viewDidLoad() {
super.viewDidLoad()
let temp = SMCObjC.calculateTemp()
print("I got \(temp) in swift")
}
}
这是我的示例项目:
https://www.dropbox.com/sh/lpe9bm08s2ynoob/AAA-N_br7aqRxJRks53FYK0fa?dl=0