Swift/SwiftUI
-
[SwiftUI] GraphQL을 써보고 느낀점Swift/SwiftUI 2022. 9. 5. 09:32
너무 좋다 세상 이런게 어딨나 FB 형님들 최고시다 URLSession을 통해 restful하게 통신할때보다 초기 cost가 좀 있는 편이다 이것저것 세팅할게 있지만 좋은점은 바로바로 client단에서 원하는 data만 쏙쏙 빼올수 있다 (api 수정없이) backend 단에서 좋은 점은 api를 따로 이것저것 만들지 않고 기본적인 api만 구성해놓는다면 graphQL query를 통해 다양한 variation이 가능하다는 것이다 너무 좋다~!
-
[SwiftUI] BackgroundTaskSwift/SwiftUI 2022. 7. 25. 10:36
Apple Developer Documentation developer.apple.com Efficiency awaits: Background tasks in SwiftUI - WWDC22 - Videos - Apple Developer Background Tasks help apps respond to system events and keep time-sensitive data up to date. Learn how you can use the SwiftUI Background... developer.apple.com
-
-
[SwiftUI] SwiftUI-Text-Animation-LibrarySwift/SwiftUI 2022. 5. 28. 18:02
GitHub - chitomo12/SwiftUI-Text-Animation-Library: Text animation library for SwiftUI Text animation library for SwiftUI. Contribute to chitomo12/SwiftUI-Text-Animation-Library development by creating an account on GitHub. github.com
-
[SwiftUI] final : 더 이상 새끼 안칠꺼임Swift/SwiftUI 2022. 5. 17. 03:22
[Swift] final 키워드는 언제 사용할까? Swift 에서는 다른 언어와 비슷하게 클래스를 상속해 서브클래스를 구현할 수 있어요. 만약, 해당 클래스가 더이상 상속이 필요없거나 특정 속성은 오버라이드하지 않아야 한다면 어떻게 해야할 jellysong.tistory.com method, property, class 등 상속 및 override 할수 있는 object 의 이름앞에 붙이는 키워드 이다 예를 들면 final class Doctor 이라는 class가 있다면 얜 더 이상 상속 할수 없는 class 이고 final func, final var 등으로 선언한다면 subclass 등에서 해당 object에 대해 더 이상 override 할수 없다
-
-