Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Git
- Archive
- Realm
- 이미지
- Xcode
- Firebase
- mac
- FLUTTER
- IOS
- 한글
- SwiftUI
- JPA
- Session
- MacOS
- github
- darkmode
- Notification
- iOS16
- error
- rxswift
- UIButton
- Code
- 개발자
- 웹뷰
- window
- geofencing
- shorebird
- Swift
- appstore
- Apple
Archives
- Today
- Total
목록performWithoutAnimation (1)
EEYatHo 앱 깎는 이야기

tableView.reloadRows(at: [indexPath], with: .none) 해당 코드에서, witth부분(애니메이션부분)은, none을 제공하고 있지만, 실제는 automatic과 동일하게 작동한다 ㅡㅡ 일해라 애플.... 애니메이션 없이 reloadRows를 하고 싶다면, 애니메이션들을 명시적으로 비활성화 할 수 있는 UIView.performWithoutAnimation를 사용하면 된다. UIView.performWithoutAnimation { tableView.reloadRows(at: [indexPath], with: .none) }
iOS, Swift
2021. 10. 12. 01:23