본문 바로가기

Programming/Swift

(17)
[SwiftUI] VStack과 LazyVStack과의 차이 VStack과 LazyVStack 또는 HStack과 LazyHStack 기본 요지는 - VStack은 전체 데이터를 메모리에 담아두고 스크롤 할때마다 보여줌 - LazyVStack은 데이터가 화면에 렌더링 되는 순간 보여지는 순간 그려짐 둘 차이만 봐도 메모리 차이가 심할 것 같아요 (미리 화면을 다 그려놓고 보여주느냐, 렌더링 되는 순간에 그려주느냐) 그럼 많이들 쓰는List는 어떤방식이냐? 궁금했는데요 https://developer.apple.com/forums/thread/651256 를 살펴보니 "List contents are always loaded lazily" List는 모두 Lazy하게 그려준다고 하니, 스크롤 형식의 많은 내용을 보여줄때는 List를 쓰면 될 것 같습니다. 참고사이트..
[SwiftUI] @FocusState Property Wrapper iOS 15에 추가된 FocusState Property Wrapper입니다. Focus를 자유롭게 이동시키기 위한 Property Wrapper이며 아래와 같이 선언해서 사용합니다. @FocusState var isFocusField: Bool @State var email: String UITextField("email", text: $email, prompt: Text("email")) .focus($isFocusField) 만약 포커스할 입력창 여러개 있어야 할 경우, 이렇게 각 필드마다 FocusState를 줘야하는데요 @FocusState var isFocusEmail: Bool @State var email: String @FocusState var isFocusPassword: Bool @..
realm swift 강의 실무에서 활용하는 프로토콜 중심 프로그래밍 프로토콜 지향 MVVM을 소개합니다.
swift 구조체에서 protocol 사용 예제 1 struct에서 공통된 기능을 쓰기 위해서 protocol을 통해 추상화 과정을 거친다. 하지만 일부 기능은 구현이 필요 없는 경우도 존재한다. protocol Car { func stop() { } func autostop() { } } struct Truck: Car { func stop() { } func autostop() { } } struct Van: Car { func stop() { } func autostop() { } } 일부 추상화 함수를 extension을 통해 작성하게 되면, 해당 프로토콜을 채택한 struct에서 모두 구현해야할 필요가 없어지게 된다. protocol Car { func stop() { } } extension Car { func autostop() { } } s..
Rick and Morty API Rick And Morty 에니메이션의 캐릭터, 위치, 에피소트의 데이터베이스를 확인할 수 있는 API https://rickandmortyapi.com The Rick and Morty API The Rick and Morty API is a REST and GraphQL API based on the television show Rick and Morty rickandmortyapi.com REST API 관련 문서는 https://rickandmortyapi.com/documentation/ Documentation This documentation will help you get familiar with the resources of the Rick and Morty API and show you..
You don’t (always) need [weak self] https://medium.com/@almalehdev/you-dont-always-need-weak-self-a778bec505ef You don’t (always) need [weak self] We will talk about weak self inside of Swift closures to avoid retain cycles & explore cases where it may not be necessary to capture self weakly. medium.com
애플 공식사이트에서 제공하는 SwiftUI 강좌 https://developer.apple.com/tutorials/swiftui
swift argument parser를 통한 CLI 앱 생성 https://github.com/apple/swift-argument-parser GitHub - apple/swift-argument-parser: Straightforward, type-safe argument parsing for Swift Straightforward, type-safe argument parsing for Swift - GitHub - apple/swift-argument-parser: Straightforward, type-safe argument parsing for Swift github.com https://ichi.pro/ko/swift-argument-parserleul-sayonghayeo-myeonglyeong-jul-dogu-bildeu-1703203279450..

반응형