Learn how to create, modify, save, and delete a record in CloudKit.
This is a companion discussion topic for the original entry at https://www.raywenderlich.com/3413-introduction-to-cloudkit/lessons/4
Learn how to create, modify, save, and delete a record in CloudKit.
In the OldTimeRadio OTR, how do I add initializers or should I make something an optional? Iβm using Swift 2. Thank you.
I fixed this by making CKRecord an optional β?β
But OTREpisodeLIstingTableViewController: UIViewController, UITableViewDelegate, UITableViewDataSource
error - Candidate is not a funciton. Thanks
Hi Sing β¦ this video was made using Swift 1.0 and we havenβt updated the language to keep it up to date with the language. That said, I was able to fix the compile error by add this to OTREpisodeViewController
let episode : CKRecord! = nil
That should resolve the other errors although there are some warnings about println statements needing to be converted to print statements.
I hope that helps!