[UIView animateWithDuration:0 animations:NULL completion:^(BOOL finished) { [UIView animateWithDuration:0.25 animations:^{ scrollView.contentOffset = CGPointMake(0.0f, 0.0f); scrollView.contentInset = UIEdgeInsetsMake(0.0f, 0.0f, 0.0f, 0.0f); } completion:NULL]; }];
關鍵在於:套兩層animation!spa
keyword: UIScrollView contentInset contentOffsetcode