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
- Firebase
- mac
- MacOS
- darkmode
- Git
- Notification
- Xcode
- stack
- Apple
- 개발자
- UIButton
- SwiftUI
- Session
- appstore
- Code
- IOS
- Swift
- JPA
- window
- error
- rxswift
- 한글
- 웹뷰
- Realm
- iOS16
- github
- view
- Archive
- FLUTTER
- geofencing
Archives
- Today
- Total
EEYatHo 앱 깎는 이야기
Swift ) .system타입 UIButton setTitle 애니메이션 없애기 - EEYatHo iOS 본문
반응형
var myButton = UIButton(type: .system)
...
myButton.setTitle("text", for: .normal)
...
myButton.setTitle("text2", for: .normal)
위와 같이 .system 타입으로 선언한 버튼에, 두번째 setTitle을 하게 되면,
버튼의 텍스트들이 천천히 사라졌다가 나타나는 애니메이션이 적용됩니다.
이런 애니메이션을 원하지 않을 경우,
var myButton = UIButton(type: .system)
...
myButton.setTitle("text", for: .normal)
...
UIView.setAnimationsEnabled(false)
myButton.setTitle("text2", for: .normal)
myButton.layoutIfNeeded()
UIView.setAnimationsEnabled(true)
두번째 setTitle을 애니메이션을 막고, layoutIfNeeded()를 호출하면 됩니다.
'iOS, Swift' 카테고리의 다른 글
Swift ) Realm 사용시 쓰레드 주의사항 - EEYatHo iOS (0) | 2021.03.23 |
---|---|
Swift ) UIButton in Cell not working - EEYatHo iOS (0) | 2021.03.22 |
Swift) 앱 배포시 네아로 로그인 안됨 - EEYatHo iOS (0) | 2021.03.17 |
iOS, Swift 애니메이션 서드파티 Lottie (0) | 2021.03.16 |
Swift ) webView javascript 함수 실행 ( + 웹 다크모드 대응) (0) | 2021.03.15 |
Comments