月曜日, 9月 01, 2008

Application Bundleからのファイルの読み込み方法


NSString *filePath = [[NSBundle mainBundle] pathForResource:@"important" ofType:@"txt"];
if (filePath) {
NSString *myText = [NSString stringWithContentsOfFile:filePath];
if (myText) {
textView.text= myText;
}
}

0 件のコメント: