热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

在IOS8中使用共享扩展时如何获取源应用程序的bundleId

如何解决《在IOS8中使用共享扩展时如何获取源应用程序的bundleId》经验,为你挑选了1个好方法。

我想知道哪个应用程序调用共享扩展以将图像共享到我的应用程序(其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


推荐阅读
author-avatar
374439252亮
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有