我已经在我的tableviewcell中添加了一个水平UIPanGestureRecognizer来平移该单元的子视图,就像ios7邮件应用程序显示删除和更多选项的方式一样,这按预期工作
- (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 == UIGestureRecognizerStateChanged) {
CGPoint translation = [sender translationInView:self.tableView];
[cell.view setCenter:CGPointMake(cell.view.center.x + translation.x, cell.view.center.y)];
[sender setTranslation:CGPointMake(0, 0) inView:self.tableView];
}
}
我还想做的是在每个UITableViewCells上添加一个带有锚点的UIAttachmentBehavior,这样,当我水平平移
cell.view
时,我会感到有些抵触,然后放开时,平移的单元格中的视图会弹回它是x轴上的原始锚位置,这可能与UIDynamics有关吗?我还可以将单元格的一侧设置为边界,以防止用户平移所包含的视图吗?
最佳答案
因此,这里是使此工作正常运行的代码,仍然需要进行调整以获得正确的感觉,但是一切都可以按预期进行
在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相同的感觉,请让我知道,谢谢
关于ios - UITableViewCell中的UIAttachmentBehavior,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19432833/