2016-01-21 82 views
-1

我正在聊天應用程序,因爲我用UITableView聊天屏幕。在每一個聊天泡泡用戶的個人資料圖片在那裏,現在我的問題是當一個新的消息來或我發送新的消息整個tableView重新加載與聊天氣泡中的圖像也,我想停止它,任何人都可以幫我找出它? 我的代碼是:停止重新加載UItableView一次又一次在Iphone

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    if (tableView == self.chatTableView) 
    { 
     NSString *cellID; 
     if([[((UUMessageFrame *)(self.chatModel.dataSource[indexPath.row])) message] from] == UUMessageFromMe) 
     { 
      cellID = @"outgoing_cell"; 
     } 
     else 
     { 
      cellID = @"incoming_cell"; 
     } 
     //commented by jigar 
     // UUMessageCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath]; 
     // UUMessageCell *cell = [tableView]; 

     UUMessageCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID]; 
     if (cell == nil) { 
      cell = [[UUMessageCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID]; 
      cell.delegate = self; 
      if ([cellID isEqualToString:@"outgoing_cell"]) 
      { 
       //    cell.recognizer.numberOfTapsRequired 
       [cell.recognizer addTarget:self action:@selector(longPress:)]; 
      } 
     } 
     [cell setMessageFrame:self.chatModel.dataSource[indexPath.row]]; 
     NSLog(@" text message is : %@",[cell.btnContent titleForState:UIControlStateNormal]); 
     cell.btnContent.tag = indexPath.row; 
     return cell; 
    } 
    else 
    { 
     NSString *cellIdentifier;/* = isOutgoingMessage ? self.outgoingCellIdentifier : self.incomingCellIdentifier;*/ 
     if ([[self.arrTableData objectAtIndex:indexPath.row] isKindOfClass:[OTRVoice class]]) 
     { 
      OTRVoice *voice = (OTRVoice *)[self.arrTableData objectAtIndex:indexPath.row]; 
      if(![voice.fk_Tripper isEqualToString:appDelegate.account.uniqueId]) 
      { 
       cellIdentifier = self.incomingCellIdentifier; 
      } 
      else 
      { 
       cellIdentifier = self.outgoingCellIdentifier; 
      } 
     } 
     else{ 
      cellIdentifier = self.outgoingCellIdentifier; 
     } 
     @try 
     { 
      VoiceTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath]; 
      cell.avatarImage.clipsToBounds = YES; 
      cell.avatarImage.layer.cornerRadius = cell.avatarImage.bounds.size.width/2.0; 
      cell.selectionStyle = UITableViewCellSelectionStyleNone; 
      tableview.separatorStyle = UITableViewCellSeparatorStyleNone; 
      cell.circular_ProgressView.frame = CGRectMake(cell.btnPlay.frame.origin.x-2, cell.btnPlay.frame.origin.y, 26, 26); 
      [self configureCell:cell atIndexPath:indexPath]; 
      cell.tag = indexPath.row +10000; 
      return cell; 
     } 
     @catch(NSException *e) 
     { 
      NSLog(@"Exception is : %@",e); 
     } 
    } 
} 
+0

對於加載圖像,您可以使用SDWebImage庫。 – kb920

回答

0

可以使用https://github.com/rs/SDWebImage庫。 在這個庫中,您可以使用延遲加載概念將圖像直接設置爲UIImageview。所以即使你每次都設置圖像。它不會一再下載。例如

檢查下面的代碼。

NSURL *url = [NSURL URLWithString:@"url"]; 

[cell.avatarImage setImageWithURL:url usingActivityIndicatorStyle:UIActivityIndicatorViewStyleGray]; 
+0

我已經使用過,但是當我上下滾動圖像總是重新加載。:(你可以幫助我什麼是我的代碼錯誤,因爲它已經採取了我的3天.. :( –

+0

我沒有找到任何地方您已使用SDWebImage。 –

相關問題