gpt4 book ai didi

objective-c - ShareKit 电子邮件表单并不总是显示

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:24:32 27 4
gpt4 key购买 nike

我正在使用 ShareKit 将对象共享到 Twitter、Facebook 和电子邮件。 Twitter 和 Facebook 工作正常,但电子邮件不行。我真的不知道为什么。

它似乎很随机。

我是这样设置的:

[self.customView.shareButton addTarget:self action:@selector(sharePost:) forControlEvents:UIControlEventTouchUpInside];

- (void)sharePost:(UIButton *)sender
{
NSURL *url = [NSURL URLWithString:self.currentPost.link];

// Add image.
NSString *imageUrlString = [NSString stringWithFormat:[link]];
NSURL *imageUrl = [NSURL URLWithString:imageUrlString];
UIImageView *postImage = [[UIImageView alloc] init];
[postImage setImageWithURL:imageUrl];

SHKItem *item = [SHKItem image:postImage.image title:[NSString stringWithFormat:@"%@", self.currentPost.title]];
[item setURL:url];
[item setMailBody:[NSString stringWithFormat:@"%@ %@", self.currentPost.title, self.currentPost.link]];

// Get the ShareKit action sheet
// This works
SHKActionSheet *actionSheet = [SHKActionSheet actionSheetForItem:item];

// ShareKit detects top view controller (the one intended to present ShareKit UI) automatically,
// but sometimes it may not find one. To be safe, set it explicitly.
[SHK setRootViewController:self];

// Display the action sheet.
[actionSheet showInView:self.view];
}

有什么想法或者我遗漏了什么或做错了什么吗?

最佳答案

尝试更改 RootViewController 并查看您正在使用的 View :

[SHK setRootViewController:self.view.window.rootViewController];
[actionSheet showInView:self.view.window.rootViewController.view];

很可能您的 View Controller 层次结构有些困惑。

关于objective-c - ShareKit 电子邮件表单并不总是显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12040407/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com