i'm casting an array of pfobject in PFQueryTableViewController, but got an error.. which is the corrent way?
override func objectsDidLoad(error: NSError?) {
super.objectsDidLoad(error)
var totalSeconds: Int = 0
for record in objects as! [Record] {
totalSeconds += Int(record.totalDuration)
}
navigationItem.prompt = MyUtility.stringFromSeconds(totalSeconds)
}
record must be an "Record" object conform to protocol PFSubclassing
Now, when the objects finish loading the debugger say error
fatal error: NSArray element failed to match the Swift Array Element type
I solved in this way:
There is a faster way to do the same thing?