我有问题。我需要为越狱iOS 解决这个问题。我的应用程序在后台模式下工作我希望该应用程序在某些事件后从后台转到前台模式。 我尝试了下一条指令:
system([[NSString stringWithFormat:@"uiopen \"%@\"", @"appname://"] UTF8String])
但是应用程序没有从后台运行。应用程序作为新进程运行。 谢谢。
答案 0 :(得分:2)
用户私有API:
int SBSLaunchApplicationWithIdentifier(CFStringRef displayIdentifier, Boolean suspended);
它是在SpringboardServices私有框架中定义的。
您需要添加权利“com.apple.springboard.launchapplications”才能生效。