所以这里是让它工作的代码,它仍然需要调整以获得正确的感觉,但一切都按预期工作
在 TestCell UITableViewCell 子类中
-(void)layoutSubviews{
[super layoutSubviews];
self.animator = [[UIDynamicAnimator alloc] initWithReferenceView:self];
self.attachmentBehavior = [[UIAttachmentBehavior alloc] initWithItem:self.topView attachedToAnchor:self.topView.center];
[self.attachmentBehavior setFrequency:4.5];
[self.attachmentBehavior setDamping:0.3];
UIGravityBehavior *gravityBehavior = [[UIGravityBehavior alloc] initWithItems:@[self.topView]];
//gravity direction: right
[gravityBehavior setGravityDirection:CGVectorMake(1.0, 0.0)];
UICollisionBehavior *collisionBehavior = [[UICollisionBehavior alloc] initWithItems:@[self.topView]];
[collisionBehavior addBoundaryWithIdentifier:@"rightBoundary" fromPoint:CGPointMake(320.0f, 0.0f) toPoint:CGPointMake(320.0f, self.contentView.frame.size.height)];
[self.animator addBehavior:gravityBehavior];
[self.animator addBehavior:collisionBehavior];
}
在我的 tableViewController
-(BOOL)gestureRecognizerShouldBegin:(UIPanGestureRecognizer *)gestureRecognizer {
CGPoint translation = [gestureRecognizer translationInView:self.view.superview];
// Check for horizontal gesture
if (fabsf(translation.x) > fabsf(translation.y)) {
return YES;
}else{
return NO;
}
}
- (IBAction)slideCell:(UIPanGestureRecognizer *)sender
{
CGPoint locationOfPan = [sender locationInView:self.tableView];
NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:locationOfPan];
TestCell *cell = (TestCell *)[self.tableView cellForRowAtIndexPath:indexPath];
if(sender.state == UIGestureRecognizerStateBegan){
[cell.attachmentBehavior setAnchorPoint:cell.topView.center];
[cell.animator addBehavior:cell.attachmentBehavior];
}
if (sender.state == UIGestureRecognizerStateChanged) {
CGPoint translation = [sender translationInView:self.tableView];
[cell.attachmentBehavior setAnchorPoint:CGPointMake(cell.topView.center.x + translation.x, cell.topView.center.y)];
[sender setTranslation:CGPointMake(0, 0) inView:self.tableView];
}
if (sender.state == UIGestureRecognizerStateEnded) {
//incase pan gesture has moved off the cell
for(TestCell *cell in [self.tableView visibleCells]){
[cell.animator removeBehavior:cell.attachmentBehavior];
}
}
}
希望这可以帮助其他人尝试做同样的事情,如果有人知道 UIAttachmentBehavior 的设置以获得与 UIScrollview 相同的感觉,你能告诉我吗,谢谢