Hi,
I have a json file that I have it printing to the terminal, but now I want to have the output go to an iPhone, iPad, and Apple Watch screen. Here's what I have in the viewDidLoad section....
override func viewDidLoad() {
super.viewDidLoad()
let data = GetData().$userData
print(data)
// Immediately get a quote upon app entry.
//getQuote()
}
The $userdata and data are defined in another file. Again, everything parses fine in the terminal.
If you need the other part of the code, please let me know.
Thanks,
Dan Uff
I have a json file that I have it printing to the terminal, but now I want to have the output go to an iPhone, iPad, and Apple Watch screen. Here's what I have in the viewDidLoad section....
override func viewDidLoad() {
super.viewDidLoad()
let data = GetData().$userData
print(data)
// Immediately get a quote upon app entry.
//getQuote()
}
The $userdata and data are defined in another file. Again, everything parses fine in the terminal.
If you need the other part of the code, please let me know.
Thanks,
Dan Uff