//注冊(cè)創(chuàng)建cell
//1.注冊(cè)系統(tǒng)的cell類
//[UILabel class];
//[UIView class];
//[table registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"];
//2.注冊(cè)自定義類的
//[table registerClass:[customTableViewCell class] forCellReuseIdentifier:@"cell"];
//3.注冊(cè)Xib? cell
[tableregisterNib:[UINibnibWithNibName:@"XibTableViewCell" bundle:nil] forCellReuseIdentifier:@"cell"];
//注冊(cè)cell的話不需要判斷
//if(!cell){
//cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
//}