众所周知,iPad可以实现分屏模式(画中画),那么iPhone可不可以呢?答案是肯定的,如果你的设备已经越狱,请使用以下代码。
#define k(key) CFEqual(string, CFSTR(key))
extern "C" Boolean MGGetBoolAnswer(CFStringRef);
%hookf(Boolean, MGGetBoolAnswer, CFStringRef string)
{
if (k("nVh/gwNpy7Jv1NOk00CMrw")) // "MedusaPIPCapability"
return YES;
return %orig;
}
%ctor {
if ([NSBundle.mainBundle.bundleIdentifier isEqualToString:@"com.apple.MediaPlayer.RemotePlayerService"])
return;
%init;
}
发表评论