Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class CaptionCollector: ObservableObject {
  2. @Published var caption: String = ""
  3. }
  4. @ObservedObject var capCollect = CaptionCollector()
  5.  
  6. //...
  7. Text(self.capCollect.caption)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement