My code worked fine in Xcode 6.2. After upgrading to Xcode 6.3, I had some Nullabilty errors.
I could solve these errors after downloading Parse SDK 1.7.1. Therefore, I deleted the old Parse framework files in my project and inserted new ones into it. Additionally, I will convert my code into the latest fast syntax "Edit / Convert / Last Fast Syntax". Now I have no problem with Nullabilty errors, but a few others. In my project, I have a simple Tableviewcontroller with the following code:
import UIKit class HaendlerTableViewController: PFQueryTableViewController {
I wrote errors in the comments on the right side of the code and below.
- Falialbe initializes init / style: className :) 'cannot override initializer without fail
- Ovverriding method with queryForTable selector has incompatible type () -> PFQuery
- Ovverriding method with the selector 'tableView: cellForRowAtindexPath: object:' has an incompatible type '(UITableView, NSIndexPath, PFObject) -> PFTableViewCell
- Could not find overload for "index" that accepts provided agents
I have the same errors when I create a new Swift project from Parse Quickstart and add one Tableviewcontroller. My old project had an objective-C bridge header, which I deleted because I had the opportunity to add Parse SDK 1.7.1 directly to my Swift project.
Now I need help because I donβt see what I need to change.
PS: Sorry for the combination of German and English code. I will adjust it as soon as the project is launched.
source share