ローカル リソース バンドルに 3 つの HTML ファイルがあります。リーダーとして表示する必要があります。だから私は次のコードを使用してそれを表示するためにWebビューを使用しました、
- (void)viewDidLoad
{
[super viewDidLoad];
totalArray=[[NSMutableArray alloc]init];
[totalArray addObject:@"file1"];
[totalArray addObject:@"file2"];
[totalArray addObject:@"file3"];
NSLog(@"totalArray count:%d",[totalArray count]);
for (int i=0;i<3;i++)
{
NSLog(@"i count:%d",i);
NSString *bundlePath = [[NSBundle mainBundle] bundlePath];
NSURL *bundleBaseURL = [NSURL fileURLWithPath: bundlePath];
NSLog(@"webview %@", bundlePath);
NSString *filePath1= [[NSBundle mainBundle] pathForResource:[totalArray objectAtIndex:i] ofType:@"html"];
NSLog(@"filePath1:%@",filePath1);
[htmlView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:filePath1]]];
}
}
合計カウントを 3、現在のインデックス カウント、およびファイル パスとして取得しています。それでも、最初の html ファイルしか表示されません。他の 2 つのファイルがありませんでした。ここで何が問題になる可能性がありますか?親切に私を助けてください。ありがとうございます。