- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { // do something [NSThread detachNewThreadSelector:@selector(startImageread:) toTarget:self withObject:indexPath]; // 獲取圖片 // do something } -(void)startImageread:(NSIndexPath *)indexPath { UIImage *newp_w_picpath = ......// 從本地或者網(wǎng)絡(luò)獲取圖片 NSDictionary *cellp_w_picpath = [NSDictionary dictionaryWithObjectsAndKeys: indexPath, @"indexPath", newp_w_picpath,@"p_w_picpath", nil]; [self performSelectorOnMainThread:@selector(_setOCellImage:) withObject:cellp_w_picpath waitUntilDone:YES]; } - (void)_setOCellImage:( id )celldata { UIImage *newp_w_picpath = [celldata objectForKey:@"p_w_picpath"];//從參數(shù)celldata里面拿出來圖片 NSIndexPath *indexPath = [celldata objectForKey:@"indexPath"]; [self.DataTable cellForRowAtIndexPath:indexPath].p_w_picpathView.p_w_picpath = newp_w_picpath; }
本文題目:IOS延時(shí)加載TableView中Cell中的圖片
分享網(wǎng)址:http://jinyejixie.com/article28/jogicp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、移動(dòng)網(wǎng)站建設(shè)、云服務(wù)器、品牌網(wǎng)站制作、、小程序開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)