作成したファイル名と内容をテキストビューに表示するには? これは私のコードです。ファイル名とその内容をNSLogに表示できますが、テキストビューには表示できませんが、テキストビューのアウトレットを提供しています。この問題で私を助けてください。
-(IBAction) open: (id) sender
{
// Create instance of UITextView
textView = [UITextView alloc];
initWithFrame:[[UIScreen mainScreen] applicationFrame]];
NSString *homeDir = NSHomeDirectory();
// Add text
textView.text= homeDir;
NSLog(@"%@", homeDir);
textfield.text= @"output will go here..";
NSString *myFilePath = [[NSBundle mainBundle]
pathForResource:@"Myfile"
ofType:@"txt"];
NSString *myFileContents = [NSString stringWithContentsOfFile:myFilePath
encoding:NSUTF8StringEncoding
error:nil];
NSString *s = [NSString stringWithFormat:@"myFilePath: %@, Contents of file:%@",myFilePath, myFileContents];
NSLog(@"%@", s);
textView.text= s;
}