29,048
社区成员




- (void)viewDidLoad {
[super viewDidLoad];
// ......
self.myCell = [(UITableView*)self.view dequeueReusableCellWithIdentifier:@"MyCell"];
}
//......
- (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.row==0)
return self.myCell;
else
// .......
}