Моя цель состоит в том, чтобы UITableViewCell
соскользнул с одной стороны экрана (как в Твиттере), а затем снова соскользнул с другой стороны. Я могу заставить ячейку скользить по экрану вправо, но я не могу понять, как заставить ее снова скользить по экрану слева направо. Вот мой код, чтобы сдвинуть его вправо:
UITableViewCell *cell = [self cellForRowAtIndexPath:indexPath];
[cell.layer setAnchorPoint:CGPointMake(0, 0.5)];
[cell.layer setPosition:CGPointMake(cell.frame.size.width, cell.layer.position.y)];
CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"position.x"];
[animation setRemovedOnCompletion:NO];
[animation setDelegate:self];
[animation setDuration:0.14];
[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear]];
[cell.layer addAnimation:animation forKey:@"reveal"];
Спасибо за любую помощь!