//注册创建cell
//1.注册系统的cell类
//[UILabel class];
//[UIView class];
//[table registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"];
//2.注册自定义类的
//[table registerClass:[customTableViewCell class] forCellReuseIdentifier:@"cell"];
//3.注册Xib cell
[tableregisterNib:[UINibnibWithNibName:@"XibTableViewCell" bundle:nil] forCellReuseIdentifier:@"cell"];
//注册cell的话不需要判断
//if(!cell){
//cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
//}