我編寫了一個將txt文件加載到數組中的方法。然而,我對它並不滿意,因爲它對我的初學者來說看起來非常麻煩(我確信我不需要我的代碼的50%),我不知道如何指定我的txt的確切格式文件,例如NSUTF8StringEncoding。如何將txt文件加載到數組中
這裏是我的代碼:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0]; // Get documents directory
NSString *filePath = [documentsDirectory stringByAppendingPathComponent:@"Sample.txt"];
if (filePath) { // check if file exists - if so load it:
NSString *myText = [NSString stringWithContentsOfFile:filePath];
if (myText) {textView.text=myText;}
}
有關如何擦亮這件事,並指定正確的格式任何建議,我會非常感激。
@Nick韋弗:據我所知,文件目錄=資源目錄 – gd1 2011-03-22 22:29:12
謝謝!將相應地更新代碼。 – 2011-03-23 08:34:17
歡迎您,n.evermind – gd1 2011-03-24 20:31:37