2
如何在UICollectionview中顯示視頻和圖像。
我給定的URL對這一觀點:需要在uicollectionview中顯示視頻和圖像
http://exarcplus.com/check.png
的圖像和視頻從服務器使用JSON獲取。對於圖像
代碼從服務器上獲取:
NSDictionary *appsdict = [array_all objectAtIndex:indexPath.item];
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:[appsdict objectForKey:@"url"]]];
[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
[cell.image_gallery setImage:[UIImage imageWithData:data]];
}];
////////but don't know how to fetch videos from server
你能告訴我如何從服務器的細節獲取視頻.. – sures
視頻的格式也是相同的圖像讀取視頻網址的標籤,並存儲在陣列中的網址,並顯示在集合視圖 –