I have a TableVC which has categories when you tap on one it takes you to the items within it. But when I do this I get the following grouping of multiple errors when the app crashes:
1.
error initializing newrealm, Error Domain=io.realm Code=1 "Provided schema version 0 is less than last set version 1." UserInfo={NSLocalizedDescription=Provided schema version 0 is less than last set version 1., Error Code=1}
2.
2018-08-01 12:56:06.152225-0400 Todoey[35380:4690261] Unknown class SwipeTableViewCell in Interface Builder file.
3.
Could not cast value of type 'UITableViewCell' (0x1096e3580) to 'SwipeCellKit.SwipeTableViewCell' (0x106d231d0).
4.
2018-08-01 12:56:06.153831-0400 Todoey[35380:4690261] Could not cast value of type 'UITableViewCell' (0x1096e3580) to 'SwipeCellKit.SwipeTableViewCell' (0x106d231d0).
I have followed the steps laid out in many previous questions but no luck
This is where I get a -Thread 1: signal SIGABRT-
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! SwipeTableViewCell
cell.delegate = self
return cell
}
Help please