|  
 
 
sp;                                    reuseIdentifier:showUserInfoCellIdentifier]                        autorelease];           }                      // Configure the cell.           cell.textLabel.text=@"签名";           cell.detailTextLabel.text = [NSString stringWithCString:userInfo.user_signature.c_str()  encoding:NSUTF8StringEncoding];               }                (5)- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
               返回指定的 section 的header的高度                 [cpp] view plaincopy 
    - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section       {           if (section ==0)               return 80.0f;           else               return 30.0f;       }                 (6)- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInt 上一页  [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] 下一页  
 |