将主应用程序视图控制器显示为共享扩展的自定义布局

时间:2017-07-14 08:19:50

标签: ios swift ios-app-extension

我想为我的项目添加共享扩展。当用户使用我的应用程序的扩展程序共享内容时,我需要显示我的应用程序的联系人列表页面 - 就像WhatsApp那样。

我想使用我的主应用容器的联系人列表页面。

当我添加该类时,共享扩展将不起作用并显示错误。

我做了什么

我刚刚添加了以编程方式创建shareViewController的扩展程序。

我已将ShareViewControllerSLServiceVC更改为UIViewController并对其所有方法进行了评论。

之后,我添加了以下代码:

ContactsViewController *vc = [[ContactsViewController alloc] 
initWithNibName:@"ContactsViewController" bundle:nil];
vc.view.frame = self.view.bounds;
[self.view addSubview:vc.view];
[vc didMoveToParentViewController:self];

当我这样做时,我收到此错误:

  

“_ OBJC_CLASS _ $ _ ContactsViewController”,引自:

0 个答案:

没有答案