首先,创建两个全局的tableview;

@interface TianPinXunLiViewController ()
 {
  
  
 }
 @end

,实现代理的时候,用对象比对的方法

#pragma - mark TableView Datasouce
 -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
  
      
  
  
  
      
  
  
 }
 -(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  
      
       LeftCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
      
           cell = [[[LeftCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier]autorelease];
      
      
  
  
  
      
       RightCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
       if (!cell) {
           cell = [[RightCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
      
      
  
  
 }