반응형

 

Hacking with Swift 사이트의 강좌 번역본입니다.

 

[원문 : https://www.hackingwithswift.com/quick-start/swiftui/how-to-fix-cannot-convert-value-of-type-string-to-expected-argument-type-text]

How to fix “Cannot convert value of type ‘String’ to expected argument type ‘Text’ ”

 

이것은 일반적인 오류이고, SwiftUI가 Text 뷰를 가질 것으로 예상되는 곳에서 문자열을 사용하려고 시도했기 때문에 발생합니다. 간단한 예로, 다음과 같이 경고창을 만드는 것을 의미합니다.

Alert(title: "Meh")

 

SwiftUI는 일반(plain) 문자열보다 Text 뷰를 원하는 곳이 많이 있으므로, 다음과 같이 텍스트로 문자열을 감쌉니다.

Alert(title: Text("Meh"))

 

반응형
Posted by 까칠코더
,