我正在開發由靜態SQLite數據庫,系列tableviews和基於選項卡詳細視圖,其中在加載的DetailView第一視圖是它加載一系列圖像的滑動式的ImageView的iOS應用程序。將url附加到圖像路徑NSString?
我知道了這個代碼,其中它看起來像在本地工作,但我想將它從URL加載圖像,或者如果沒有互聯網連接可用顯示默認圖像。
的圖像在數據庫(爲例子)image.jpg的命名,我想他們都來自同一個URL目錄負載(例子)http://www.someurl.com/images/
謝謝
- (UIImage *) imageAtIndex:(NSUInteger)index {
Image *currentImage = (Image *) [self.images objectAtIndex:index];
NSString *path = [[NSBundle mainBundle] pathForResource:[NSString stringWithFormat:@"%@",[[currentImage filename] stringByDeletingPathExtension]] ofType:@"jpg"];
return [UIImage imageWithContentsOfFile:path];
}
當您嘗試訪問非本地資源時,嘗試使用「URL」而不是「路徑」。 – holex