ios – Instagram更新到5.0.如何使用iPhone钩子以编程方式设置“InstagramCaption”

正如Instagram官方文件所说

To include a pre-filled caption with your photo,you can set the annotation property on the document interaction request to an NSDictionary containing an NSString under the key “InstagramCaption”. Note: this feature will be available on Instagram 2.1 and later.

对于Instagram 4.x或更低版本,它的效果很好.但对于Instagram 5.0,Instagram团队增加了一个名为“Direct”的新功能.当用户上传照片时,他们有两个选项“关注者”或“直接”.我认为这就是为什么“InstagramCaption”不起作用的原因.有没有一种以编程方式添加字幕的新方法

非常感谢!

self.dic.annotation = @{@"InstagramCaption" : captionString};
    self.dic.delegate = self;
    [self.dic presentOpenInMenuFromRect:shareButton.frame inView:self.view animated:YES];

它现在不工作

解决方法

最好的答案我已经到目前为止:

Thanks for your report and interest in the Instagram platform. We are aware of this issue and it will be fixed in the next update of the iOS app.

我跟进要求一个时间框架或更多关于解决方法的信息,但没有听到任何话.

相关文章

背景 前端时间产品经理决定使用百度统计,使得 工程B 中原统计sdk-友盟统计,需要被去除。之前尝试去除...
结论: alloc负责分配内存和创建对象对应的isa指针; init只是返回alloc生成的对象。 所以alloc后,多次...
更新 如果UI愿意把启动图切割成n份,按一定约束在launchscreen.storyboard中进行排版,启动图效果会更好...
最近在看一本书《Effective OC 2.0》,今天看到有个tip是OC适中循环各自优劣性,作者最终推荐此块循环。...
// // ViewController.m // paintCodeTestOC //gif // Created by LongMa on 2019/7/25. // #import &a...
背景介绍 一般情况下,出于省电、权限、合理性等因素考虑,给人的感觉是很多奇怪的需求安卓可以实现,但...