Created
June 18, 2020 03:26
-
-
Save tehillim/3f54f8ebb27449c2bdda1dd075a9e2b1 to your computer and use it in GitHub Desktop.
SwiftUI에서 view 가 시작될때 함수 호출하는 방법
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Text(String(post.content?.rendered ?? "Loading..")) | |
| .padding(.all) | |
| .multilineTextAlignment(.leading) | |
| .onAppear(){ | |
| print("appeared") | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment