我正在嘗試將庫集成到我的ios應用程序中。該庫中有從NSBundle檢索文件
// Serve files from the standard Sites folder
NSString *docRoot = [[[NSBundle mainBundle] pathForResource:@"index" ofType:@"html" inDirectory:@"web"] stringByDeletingLastPathComponent];
這樣的事情現在我相信這個座落在目錄網頁的index.html
。我確實有一個帶有index.html的web文件夾。不過,我不確定ios應用程序在哪裏查找文件夾網頁。有什麼建議麼 ?
我把web文件夾放在'.xcodeproj'文件的旁邊。然而它仍然沒有被拾起 – Rajeshwar
您是否使用將文件添加到將文件夾添加到項目中? –
romsearcher
通過使用上述方法添加文件夾,文件夾將位於您的文件夾內,而不是位於.xcodeproj旁邊。 –
romsearcher