일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Refactoring
- rxswift
- clean architecture
- uitableview
- uiscrollview
- SWIFT
- collectionview
- UITextView
- 클린 코드
- UICollectionView
- Xcode
- Protocol
- 리팩토링
- 리펙터링
- Observable
- RxCocoa
- Human interface guide
- swift documentation
- 리펙토링
- swiftUI
- 스위프트
- map
- ribs
- MVVM
- Clean Code
- ios
- 애니메이션
- HIG
- combine
- tableView
- Today
- Total
목록Automatic (3)
김종권의 iOS 앱 개발 알아가기
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/byz06b/btrTZz1zOdW/xppDWJI1DC1aA5bcBnNz4k/img.png)
UIImage RenderingMode 이란 UIImage의 값을 원본과 같이 색상이 있는것으로 표현할것인지, 원본 색상을 지운 형태만 가져갈것인지 선택 automatic: 컨텍스트의 기본 모드를 선택하며 지정해주지 않을 경우 디폴트 값 (보통 alwaysOriginal) alwaysOriginal: 원본 색상사용 alwaysTemplate: 원본 이미지의 색상을 없애고 tintColor만 남기는 옵션 @available(iOS 7.0, *) public enum RenderingMode : Int, @unchecked Sendable { case automatic = 0 case alwaysOriginal = 1 case alwaysTemplate = 2 } 사용 방법 UIImage의 withRende..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/TWvd0/btrLKK5snnF/gqx8vVs560JTXARtLlpG3k/img.gif)
네비게이션 바 검색 창 검색 창 구현 방법 List에 띄울 뷰와 데이터 모델 준비 struct SomeView: View { var name: String var body: some View { Text(name) } } struct SomeData: Identifiable { var name: String var id: String { self.name } } ContentView에 필요한 프로퍼티 준비 searchQueryString: 검색창에서 값을 입력할 때 입력될 프로퍼티 datas: 리스트에 표출할 데이터 filteredDatas: 검색 결과 필터링된 데이터 * 대소문자 상관 없이 검색하기 위해서 string.contains()가 아닌, string.localizedStandardContai..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/Grbgz/btq4bhTcHv0/T1rWKSd2M0JP3kwhSy09BK/img.png)
자주 사용되는 것 Presentation Style: Cover Vertical, Cross Dissolve Presentation: Automatic, Full Screen Transition Style Cover Vertical Flip Horizontal Cross Dissolve - Dissolve: 녹이다 Partical Curl: Swipe에서 할 경우 runtime error Presentation Automatic, Page Sheet, Form Sheet Full Screen, Current Context