我想为中国用户在我的应用程序中集成发布到新浪微博的功能,但我不希望这个选项出现在大多数甚至不知道新浪微博是什么的用户面前。有没有办法可以查出用户是不是中国人?
发布于 2013-06-26 17:37:10
没有办法确定用户是否是中国人。所以你应该使用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
}
https://stackoverflow.com/questions/17316381
复制相似问题