作者:374439252亮 | 来源:互联网 | 2023-05-22 14:43
我想知道哪个应用程序调用共享扩展以将图像共享到我的应用程序(其bundleId或appName).但我发现无法做到这一点.NSExtensionContext中没有关于源应用程序的信息.我非常感谢任何帮助.
1> 小智..:
为了实现你所要求的:
#ifdef HIDE_POST_DIALOG
- ( void ) willMoveToParentViewController: ( UIViewController * ) parent
{
// This is called at the point where the Post dialog is about to be shown.
NSString * hostBundleID = [parent valueForKey:(@"_hostBundleID")];
NSLog( @"**** parent bundle id is %@" ,hostBundleID);
}
#endif