从主机应用程序调用扩展

时间:2014-06-18 20:44:00

标签: ios objective-c share ios8 ios-app-extension

所以我正在编写一个应用来演示我已经写过的分享扩展程序,但我不太确定如何在照片应用中显示扩展程序菜单。我有这个代码,我从参考网站上下来,但它没有显示任何内容。

NSExtensionContext *context = [[NSExtensionContext alloc] init];
[self beginRequestWithExtensionContext:context];

除了传入我的输入项目之外,还有其他事情需要做吗?

2 个答案:

答案 0 :(得分:0)

您需要关注guide over on Apple's website。我不确定您想要的是共享扩展,操作扩展或照片编辑扩展。在每种情况下,您都需要在plist文件中指定NSExtensionPointIdentifier和/或NSExtensionAttributes

如果您已经从Xcode 6创建了扩展模板,它应该自动为您配置。

答案 1 :(得分:0)

可能会帮到你。 Apple提供 ImageInverter的示例代码:Creating Action Extensions

Action Extensions有概念。