问题 In objective-C my animation bit would look something like this: [UIView animateWithDuration:0.5 animations:^{ [[[_storedCells lastObject] topLayerView] setFrame:CGRectMake(0, 0, swipeableCell.bounds.size.width, swipeableCell.bounds.size.height)]; } completion:^(BOOL finished) { [_storedCells removeLastObject]; }]; If I translate that into Swift it should look something like this: UIView.animateWithDuration(0.5, animations: { self.storedCells[1].topLayerView.frame = CGRectMake(0, 0, cell