我正在编写一个带有四个选项卡的应用程序。在第二个选项卡中,我将数据存储在 plist 中并使用此代码设置路径:
//get the path to the documents directory (where we will store our plist)
NSString* docDirectory = [self applicationDocumentsDirectory];
//append the path to the documents diretory with our plist name
NSString* destPath = [docDirectory stringByAppendingPathComponent:@"surveyResults.plist"];
这是在它自己的方法。工作正常。
在第四个选项卡中,我放置了相同的代码,但在 [self applicationDocumentsDirectory] 上出现错误:
No visible @interface for 'FourthViewController' declares the selector 'applicationDocumentsDirectory'
我在 viewDidLoad 方法中有它。
它在一个选项卡上而不是另一个选项卡上工作的任何原因?