문제

I want to integrate posting to Sina Weibo in my app for Chinese users, but I don't want the option to appear for the majority of my users who won't even know what Sina Weibo is. Is there a way that I can find out whether the user is chinese or not?

도움이 되었습니까?

해결책

There is no way to figure out if a user is chinese. So you should use 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
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top