I have an app extension which is featured in browsers, I would like to know from which app the user clicks my app extension.
e.g Say the user clicks my extension in a chrome browser , I would like to know whether it was chrome browser or safari.
The below code doesn't provide what I need. Any pointers in this regard will be appreciated.
(BOOL) application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
NSLog(@"Source Application is : %@", sourceApplication);
}