我正在尝试从 plist 值设置背光显示,但我不断收到错误消息!所以我想我的问题是如何将 plist 值转换为浮点值,以便我可以从 plist 条目设置背光?
编码:
float customBacklight = (float)[[plistDict floatForKey:@"Backlight Level"] floatValue];
GSEventSetBacklightLevel(customBacklight);
错误:
reason: '*** -[NSCFDictionary floatForKey:]: unrecognized selector sent to instance 0x15695c0'
一切正常,值正确,私有 API 设置正确,只是似乎无法将 plist 值转换为浮点值。这也不适用于 AppStore 版本。