How to invoke this method and what parameters would be passed?
This method is available in iOS 7 run time headers.
- (BOOL)uninstallApplication:(id)arg1 withOptions:(id)arg2
How to invoke this method and what parameters would be passed?
This method is available in iOS 7 run time headers.
- (BOOL)uninstallApplication:(id)arg1 withOptions:(id)arg2
Have you tried calling this method from [self device] ?
if ([[self device] applicationIsInstalled:[self uniqueAppIdentifier] type: nil error: &error])
BOOL uninstalled = [[self device ] uninstallApplication:[self uniqueAppIdentifier] withOptions: nil error: &error];