我有我設置了-void
方法,我需要檢索字符串中的一類方法+
如何獲得與類方法的字符串IOS
一個字符串值,我不能改變+
到-
方法,所以我需要找出另一種檢索該字符串的方法。
@synthesize folderPathName=_folderPathName;
-(void)loadFolderPathName:(NSString *)folder{
_folderPathName=[[NSString alloc] initWithString:folder];
}
+(NSString *)getDocumentsDirectory
{
// NSString *pathwithFoldername=[NSString stringWithFormat:@"Documents/%@",_folderPathName];
NSString *documentsDirectory = [NSHomeDirectory()
stringByAppendingPathComponent:pathwithFoldername];
return documentsDirectory;
}
我已經試過類似
-(NSString *) getFolderPathName{
return _folderPathName;
}
,但是這也不
NSString *pathwithFoldername=[FileUtils getFolderPathName];
或這讓函數調用
NSString *pathwithFoldername=[self getFolderPathName];
我怎樣才能得到這個字符串,並使用它在+方法?
謝謝,這似乎是個好主意,我會嘗試這種在某一時刻 –
好吧,請更新如果有任何問題:) –