0

我想在我的应用程序中为中国用户集成发布到新浪微博的功能,但我不希望该选项出现给我的大多数甚至不知道新浪微博是什么的用户。有没有办法查出用户是不是中国人?

4

1 回答 1

3

没有办法确定用户是否是中国人。所以你应该使用isAvailableForServiceType:.

if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeSinaWeibo]) {
    // sina weibo is available, and at least one account is set up
}
else {
    // sina weibo is not available, or no accounts are set up
}
于 2013-06-26T09:37:10.267 回答