EEYatHo 앱 깎는 이야기

Swift ) UITableView reloadRows 애니메이션 none 안됨 - EEYatHo 본문

iOS, Swift

Swift ) UITableView reloadRows 애니메이션 none 안됨 - EEYatHo

EEYatHo 2021. 10. 12. 01:23
반응형
tableView.reloadRows(at: [indexPath], with: .none)

해당 코드에서, witth부분(애니메이션부분)은,

none을 제공하고 있지만, 실제는 automatic과 동일하게 작동한다 ㅡㅡ

일해라 애플....

 

애니메이션 없이 reloadRows를 하고 싶다면,

애니메이션들을 명시적으로 비활성화 할 수 있는 UIView.performWithoutAnimation를 사용하면 된다.

UIView.performWithoutAnimation {
    tableView.reloadRows(at: [indexPath], with: .none)
}
Comments