I want to create app which will detect and show the list of all running application and i can close other application from that app.
Below is the code to open the application. But is their any way to close the another running applications
NSString *customURL = @"iOSDevTips://";
if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:customURL]])
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:customURL]];
}
Is this possible in objective C or swift?
If yes what are the chances for its acceptance by apple review team