我正在关注一个教程,我对这行代码有点困惑......
sideView.frame = CGRectMake(gesture.direction == UISwipeGestureRecognizerDirectionRight ? -swipedCell.frame.size.width : swipedCell.frame.size.width, swipedCell.frame.origin.y, swipedCell.frame.size.width, swipedCell.frame.size.height);
是什么gesture.direction == UISwipeGestureRecognizerDirectionRight ? -swipedCell.frame.size.width :
意思?
在我的经验中,我从未见过它。==
该语句中的and? -
和是什么:
意思?或者你能解释一下整个事情吗?如果我左右滑动,这会使框架变成什么?
非常感谢。