UITableView _dequeueReusableViewOfType:withIdentifier:
在xib tableviewcell里放了N多个UIView
在使用这个cell的时候不能使用CouponCell *cell = [tableView dequeueReusableCellWithIdentifier:@“cellID” forIndexPath:indexPath];
而是要使用
CouponCell *cell = [[[NSBundle mainBundle] loadNibNamed:@"CouponCell" owner:self options:nil] objectAtIndex:0];