何らかの理由で、plist から値を取得できず、なぜ plist なのかわかりません:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CachedColors</key>
<dict>
<key>com.Halfbrick.Fruit</key>
<string>0.00000,0.00000,0.00000</string>
<key>com.amazon.Amazon</key>
<string>0.00000,0.00000,0.00000</string>
<key>com.apple.AdSheetPhone</key>
<string>0.00000,0.00000,0.00000</string>
<key>com.apple.AppStore</key>
<string>0.28824,0.37059,0.48235</string>
<key>default</key>
<true/>
<key>gradient</key>
<false/>
<key>opaque</key>
<true/>
<key>showedMessage</key>
<true/>
<key>translucent</key>
<true/>
</dict>
</plist>
私の方法は次のとおりです。
SBApplication *frontApp = [(SpringBoard*)[UIApplication sharedApplication] _accessibilityFrontMostApplication];
NSString *frontAppBundleID = [frontApp displayIdentifier];
NSDictionary *statusBarCachedColors = [NSDictionary dictionaryWithContentsOfFile:@"/var/mobile/Library/Preferences/cc.tweak.statuscolor.plist"];
NSString *colorString = (NSString*)[statusBarCachedColors objectForKey:frontAppBundleID];
NSArray *components = [colorString componentsSeparatedByString:@","];
UIColor *tintColor = [UIColor colorWithRed:[[components objectAtIndex:0] floatValue] green:[[components objectAtIndex:1] floatValue] blue:[[components objectAtIndex:2] floatValue] alpha:1];
私のメソッドは、現在のアプリケーションの表示 ID を取得し、plist からアプリの値を取得し、値の文字列を分割して、配列から UIColor を作成します。AppStoreを開いた場合、plistを検索して「0.28824、0.37059、0.48235」を返し、それを色にしますが、何も返されないようです。displayIdentifierをテストしましたが、正しいです正しいアプリ表示 ID を表示します。値が取得されない理由がわかりません