gpt4 book ai didi

ios - SLComposeViewController: "No Twitter Accounts"警报的不同行为取决于是否安装 Twitter 应用程序

转载 作者:行者123 更新时间:2023-11-29 01:08:47 29 4
gpt4 key购买 nike

我在我的应用程序中使用以下代码进行 Twitter 分享:

SLComposeViewController *twitter = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];
[twitter setInitialText:@"some text"];

twitter.completionHandler = ^(SLComposeViewControllerResult result)
{
// do something...
[topViewController dismissViewControllerAnimated:YES completion:nil];
};
[topViewController presentViewController:twitter animated:YES completion:nil];

现在,如果没有设置 Twitter 帐户并且没有安装 Twitter 应用程序,我会收到以下警告:

enter image description here

它确实做了它应该做的事,按“取消”关闭警报 View 和 Twitter 撰写 View 。按“设置”也会关闭两个 View 并打开设置。不错。

现在,如果没有设置 Twitter 帐户,但已安装 Twitter 应用程序,我会收到以下警报:

enter image description here

请注意,没有“取消”和“设置”按钮,只有一个“确定”按钮。如果按下,警报 View 会消失,但 Twitter 撰写 View 会保留在那里,“发布”按钮会变灰。因此,用户只能再次按“取消”来关闭撰写 View 并自行转到设置。不太好。

请注意,在呈现 SLComposeViewController 之前是否检查服务可用性并没有什么区别:

[SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter];

您知道吗,无论是否安装了 Twitter 应用程序,为什么会有这种行为差异?是否有办法获得相同的行为?

在 iOS 9.2.1、iPad Air(第二代)和 iPhone 6 Plus 上测试。

最佳答案

检查 [this] ( Opening the Settings app from another app )。滚动到底部,有一个尚未被投票(奇怪地)包含图像的答案。那里的链接向您展示了如何从您的应用程序导航到设置/推特。下一步是研究使用 ACAccountStore,检查是否没有用户通过数组登录。

let accountStore = ACAccountStore()
let accountType = accountStore.accountTypeWithAccountTypeIdentifier(ACAccountTypeIdentifierTwitter)

accountStore.requestAccessToAccountsWithType(accountType, options: nil, completion: { (granted, error) in
if (granted) {
let arrayOfAccts = accountStore.accountsWithAccountType(accountType)
if (arrayOfAccts.count > 0) {
//regular function of twitter
}
//else is when there are no accounts logged into twitter
else {
//bring up a custom UIAlertAction with two options; Cancel and Settings.
//settings should use the openURL to prefs:root=TWITTER
}
}

当用户未登录 Twitter 且未安装应用程序时,它将模仿它的工作方式,为您提供“取消”和“设置”。

至于为什么你得到不同的警报设置超出了我的范围,这可能是 iOS apple 的事情。

这一行:

[SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter];

检查是否安装了 Twitter 应用程序。希望这会有所帮助。

关于ios - SLComposeViewController: "No Twitter Accounts"警报的不同行为取决于是否安装 Twitter 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36007768/

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