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 |
Tags
- Firebase
- Notification
- error
- geofencing
- iOS16
- MacOS
- Archive
- 한글
- UIButton
- Code
- mac
- window
- JPA
- Xcode
- 개발자
- view
- IOS
- FLUTTER
- rxswift
- 이미지
- Apple
- Session
- 웹뷰
- Git
- darkmode
- github
- appstore
- Swift
- SwiftUI
- Realm
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