我使用Xcode 7时得到了这个?有任何想法吗?

时间:2015-09-17 10:04:08

标签: ios xcode7

出现以下错误:

 no visible @interface for 'NSString' declares the selector 'primaryLanguage'

代码如下:

 NSString *lang = [[[UITextInputMode activeInputModes] firstObject] primaryLanguage];
                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~
```NSString *lang = [[[UITextInputMode activeInputModes] firstObject] primaryLanguage];```

image

1 个答案:

答案 0 :(得分:1)

UIKeyboardInputMode是私人课程。

因此,您不能调用此方法/属性。您必须add the private header,这使得无法在AppStore中发布代码。