Typelias
·
SwiftUI
같은 내용의 struct를 새로 만드는 대신 다른 이름의 struct를 하나 만드는 것 입니다 사용해야되는 상황넷플릭스같은 앱을 만든다고 했을 때 영화 모델이 필요할 것입니다.struct MovieModel { let title: String let director: String let count: Int}struct ContentView: View { @State var item: MovieModel = MovieModel(title: "Title", director: "Yoon", count: 5) var body: some View { VStack { Text(item.title) Text(item.director..