我的代码是这样的:
[tableview setContentOffset:CGPointMake(0,180) animated];
但有时,它是不正确的,tableview 的 y 偏移量仅为 20 或其他值。
我调试代码并在 中找到UIViewAnimationState animationDidStop:finished:
,他们只是将其设置为错误的 y 偏移值(如 20 或其他值),而不是我给 tableview 的 y 偏移值。
我的代码是这样的:
[tableview setContentOffset:CGPointMake(0,180) animated];
但有时,它是不正确的,tableview 的 y 偏移量仅为 20 或其他值。
我调试代码并在 中找到UIViewAnimationState animationDidStop:finished:
,他们只是将其设置为错误的 y 偏移值(如 20 或其他值),而不是我给 tableview 的 y 偏移值。