2016-11-18 75 views
1

我有一個UITableView與兩個不同的自定義單元格。一個會顯示正常的文字信息,另一個會顯示一些文字和圖像。我能夠使用兩種不同的自定義細胞cellForRowAtIndexPath並能看到兩個不同的細胞像下面 enter image description hereUITableview有兩個不同的自定義單元格重疊,而滾動

但每當我滾動tableview中然後將細胞重疊像下面。

enter image description here

下面是我的代碼

-(CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath { 
    //minimum size of your cell, it should be single line of label if you are not clear min. then return UITableViewAutomaticDimension; 

    return UITableViewAutomaticDimension; 
} 
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    id cell = [tableView cellForRowAtIndexPath:indexPath]; 
    if ([cell isKindOfClass:[TicketTableViewCell class]]) { 
     return 171; 
    } else { 
     return UITableViewAutomaticDimension; 
    } 

} 

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
{ 
    return [chatHistoryArr count]; 
} 

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 

    NSString *msgTypeStr = [msgTypeArr objectAtIndex:indexPath.row]; 
    if ([msgTypeStr isEqualToString:@"msg"]) { 


    static NSString *simpleTableIdentifier = @"ChatConversationTableViewCell"; 

    ChatConversationTableViewCell *cell = (ChatConversationTableViewCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier]; 



    if (cell == nil) 
    { 



       NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"ChatConversationTableViewCell" owner:self options:nil]; 
       cell = [nib objectAtIndex:0]; 

    } 

    cell.selectionStyle = UITableViewCellSelectionStyleNone; 

    cell.chatmsgLabel.text = [chatHistoryArr objectAtIndex:indexPath.row]; 
    cell.timeAndDateMsgLabel.text = [timeAndDateMsgArr objectAtIndex:indexPath.row]; 


    return cell; 
    } 

    else{ 
     static NSString *simpleTableIdentifier = @"TicketTableViewCell"; 

     TicketTableViewCell *cell = (TicketTableViewCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier]; 


     if (cell == nil) 
     { 


        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"TicketTableViewCell" owner:self options:nil]; 
        cell = [nib objectAtIndex:0]; 


     } 

     cell.selectionStyle = UITableViewCellSelectionStyleNone; 

     cell.tktMsgTxtView.text = [chatHistoryArr objectAtIndex:indexPath.row]; 

     cell.ticketDateAndTimeLbl.text =[timeAndDateMsgArr objectAtIndex:indexPath.row]; 



     return cell; 
    } 





} 

沒有問題,顯示數據或顯示出不同的細胞中,唯一的問題是重疊的。我已經嘗試了可用的解決方案,但沒有運氣。下面是其中之一。

在cellForRowAtIndexPath中添加下面的代碼但沒用。

for(UIView *view in cell.contentView.subviews){ 
     if ([view isKindOfClass:[UIView class]]) { 
      [view removeFromSuperview]; 
     } 
    } 

嘗試了很多來解決問題,但沒有運氣。任何幫助將非常感激。

回答

1

更改tableViewCell高度的代碼

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    NSString *msgTypeStr = [msgTypeArr objectAtIndex:indexPath.row]; 
    if ([msgTypeStr isEqualToString:@"msg"]) { 
     return UITableViewAutomaticDimension; 
    } else { 
     return 171; 
    } 
} 

它能夠解決您的問題重疊。

0

試試這一次

NSString *CellIdentifier = [NSString stringWithFormat:@"Cell %d",indexPath.row]; 

UITableViewCell *cell=[self.tableView cellForRowAtIndexPath:indexPath]; 

if (cell == nil){ 
    cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]; 
} 
+0

這不適合我。我正在使用自定義單元格。感謝您的回覆 – Madhu

相關問題