-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellIdentifier=@"TableViewCell";
//tagAlloc为一个全局的BOOL类型标志
if (!tagAlloc) {
UINib *nib=[UINib nibWithNibName:@"TableViewCell" bundle:nil];
[tableView registerNib:nib forCellReuseIdentifier:cellIdentifier];
tagAlloc=YES;
}
TableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
cell.myCellTitle.text=@"asdf";
return cell;
}