目标:使用 iOS 原生方法,用 C# 将用户制作的图片推送到他们的 Instagram 提要上。
public bool ShareImage(byte[] imageByte)
{
bool result = false;
//string fileName = "xxx.png";
//string path = Path.Combine(FileSystem.CacheDirectory, fileName);
//File.WriteAllBytes(path, imageByte);
NSData data = NSData.FromArray(imageByte);
UIImage image = UIImage.LoadFromData(data);
//NSUrl url = NSUrl.FromString($"instagram://library?AssetPath={path}"); // Only opens
NSUrl url = NSUrl.FromString($"instagram://library?LocalIdentifier={1}");
if (UIApplication.SharedApplication.CanOpenUrl(url))
{
UIApplication.SharedApplication.OpenUrl(url);
}
return result;
}
据我所知,我必须这样做的方法是将我的图像保存到设备并为此获取本地标识符。我是根据我看到的 Objective-C 代码片段构建的。共享照片仅适用于安装了本机应用程序,正如我从我的试验中了解到的那样,让 facebook 模块工作。
编辑:使用 iOS Photos 命名空间中的 PHAssetChangeRequest 不起作用。一位同事向我指出了保存然后使用照片选择器获取本地标识符的 PHAsset 的可能性。但这是一个额外的步骤,我不希望应用程序的用户经历。最好只删除 Instagram 支持,因为我可以通过如下所示的通用共享方法。这种方法的缺点是用户必须选择要共享的媒体。
public async void ShareImage(byte[] imageByte)
{
string fileName = "xxx.png";
string path = Path.Combine(FileSystem.CacheDirectory, fileName);
File.WriteAllBytes(path, imageByte);
await Share.RequestAsync(
new ShareFileRequest()
{
File = new ShareFile(path),
Title = "xxx"
}
);
}
编辑 2 使用 UIDocumentInteractionController 尝试了一种不同的方式,但它没有显示任何内容并且没有发布,它没有抛出任何异常来给我任何关于我做错了什么的线索。
public bool ShareImage(byte[] imageByte)
{
bool result = false;
string fileName = "xxx.igo";
string path = Path.Combine(FileSystem.CacheDirectory, fileName);
File.WriteAllBytes(path, imageByte);
//string caption = "xxx";
string uti = "com.instagram.exclusivegram";
UIImageView view = new UIImageView();
//UIDocumentInteractionController controller = UIDocumentInteractionController.FromUrl(NSUrl.FromString(path));
UIDocumentInteractionController controller = new UIDocumentInteractionController
{
//controller.Url = NSUrl.FromString(path);
Url = NSUrl.FromFilename(path),
Uti = uti
};
//CoreGraphics.CGRect viewDimensions = new CoreGraphics.CGRect(0, 0, 200, 100);
_ = controller.PresentOpenInMenu(CoreGraphics.CGRect.Empty, view, true);
//_ = controller.PresentOpenInMenu(viewDimensions, view, true);
return result;
}
编辑 3 使用
UIView view = new UIImageView();
if (UIApplication.SharedApplication.KeyWindow.RootViewController is UIViewController uiController && uiController.View != null)
{
view = uiController.View;
}
我能够显示可能的共享选项。我使用本机应用程序登录到 Instagram,但帖子没有显示。