1. ScrollView의 Paging Enabled
이걸로 Swipe Button X Page 구현 중이다.
2. ScrollView 마스터
동적 높이를 어떻게 구현하지 ? 싶었는데, https://stackoverflow.com/a/50944427 그냥 쉽게 생각하면 돼. SubView의 각각 아이템들을 SubView와 leading, trailing, top, bottom 모두 맞춰주면 돼.
3. An internal error occurred. editing functionality may be limited.
갑자기 스토리 보드 화면이 다 검은색으로 나옴. 검색해보니 Project -> Clean Build Folder 후 Xcode 재실행 하면 된다.
4. UILabel Storyboard상에서 글자 간격 설정
Text > Attributed 설정하면 된다.
https://stackoverflow.com/a/44658641
How to Increase Line spacing in UILabel in Swift
I have a label which has few lines of text and I want to increase the spacing between the lines. There are similar questions asked by others but the solutions don't solve my problems. Also my label...
stackoverflow.com
5. Tag Collection View
https://github.com/ElaWorkshop/TagListView
GitHub - ElaWorkshop/TagListView: Simple and highly customizable iOS tag list view, in Swift.
Simple and highly customizable iOS tag list view, in Swift. - GitHub - ElaWorkshop/TagListView: Simple and highly customizable iOS tag list view, in Swift.
github.com
다음 라이브러리 사용.
6. UIView.animate 와 UIView.animatedKeyframes.
전자는 옛날 방식이라고 한다. 후자를 권장한다고. (찾아보기)
UIView.animateKeyframes(
withDuration: 0.25,
delay: 0,
options: .calculationModeLinear,
animations: {
self.blueBarView.frame.origin.x = sender.frame.origin.x
self.mainScrollView.contentOffset.x = self.mainScrollView.frame.width * CGFloat(sender.tag)
},
completion: nil
)
'Development > iOS' 카테고리의 다른 글
[iOS] 7월 23일 (금) 개발 일지 (0) | 2021.07.24 |
---|---|
[iOS] 7월 22일 (목) 개발 일지 (0) | 2021.07.22 |
[iOS] 7월 19일 (월) 개발 일지 (0) | 2021.07.19 |
[iOS] 7월 18일 (일) 개발 일지 (0) | 2021.07.18 |
[iOS] 7월 17일 (토) 개발 일지 (0) | 2021.07.17 |