스위프트에서 문자열 "Swift is Fun!"을 "Swift is Cool!"로 바꾸는 코드는?
정답: "Swift is Fun!".replacingOccurrences(of: "Fun", with: "Cool") (정답률 77.8%)
다음 무엇에 대한 설명인가요? (영어 두단어) S______ P_________ is a revolutionary app for iPad and Mac that helps you learn to code and build apps using Swift, the same powerful language used to create world-class apps for the App Store. Engaging lessons and walkthroughs demonstrate the core concepts of coding and building apps as you write real Swift code in an interactive environment.
이번 포스팅에선 Observable, Observer, Subscribe의 흐름에 대해 좀 이해를 해보려고 합니당! 당장 Observable를 생성하는 연산자가 뭐고 어떻게 생성하고를 배우고 하는 게 아니라, 이들이 어떤 상호작용을 통해 반응형 프로그래밍을 이루는지에 대해 다룰 포스팅이에요!
SwiftUI has a great API for styling views independent of a view’s implementation. In this post, we’ll look at how we can style custom views in the same way.