-(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);
}];
}
我希望它像ios7.1一样 这对ios7.0的影响与ios7.1不同。我该如何解决? 帮助我,谢谢