문제

I have problem. I need solve this problem for jailbreak iOS. My application works in background mode. I want that application go to foreground mode from background after some events. I tried next instruction:

system([[NSString stringWithFormat:@"uiopen \"%@\"", @"appname://"] UTF8String])

But application didn't run from background. App run as new process. Thank you.

도움이 되었습니까?

해결책

User private API:

   int SBSLaunchApplicationWithIdentifier(CFStringRef displayIdentifier, Boolean suspended);

It's defined in SpringboardServices private framework.

You will need to add entitlement "com.apple.springboard.launchapplications" for this to work.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top