ios7.0 ios7.1效果中的自定义单元格setCenter具有不同的

ios7.0 ios7.1效果中的自定义单元格setCenter具有不同的,ios7,Ios7,我希望它和ios7.1一样 这对ios7.0和ios7.1的影响不同。我怎样才能修好它? 帮帮我,谢谢你你所说的区别是什么意思?是的,ios7.1和ios7.0的区别。我的意思是,你能描述一下区别吗? -(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { CustomCell *atCell = (

我希望它和ios7.1一样 这对ios7.0和ios7.1的影响不同。我怎样才能修好它?
帮帮我,谢谢你

你所说的区别是什么意思?是的,ios7.1和ios7.0的区别。我的意思是,你能描述一下区别吗?
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
CustomCell *atCell = (CustomCell *)cell;
[atCell addCellWith:0 Y:self.view.frame.size.height];
[animationArr addObject:atCell.title.text];
}


-(void)addCellWith:(float)x Y:(float)y {
atcContentView.center = CGPointMake(x, y);

[UIView animateWithDuration:0.5 animations:^{
    self.center = CGPointMake(0, 0);
}];
}