Updating to Xcode 7 Beta 5 & Swift 2 produced multiple errors

341 Views Asked by At

I updated Xcode to the new Xcode 7 beta 5. In doing so, it converted to Swift 2, but then created even more errors. Right now, I am completely stuck, and don't know what to do, because although all my errors are gone, my app will not work correctly.

My problem is this:

if(self.myOutput3 as? NSObject == true) {
        print("IT IS TRUE")

        PFUser.logInWithUsernameInBackground(self.myOutput1 as! String, password: "xxx") { (user: PFUser?, error: NSError?) -> Void in

            if error == nil {
                print("It Worked!")

                // self.presentViewController(destViewController, animated: true, completion: nil)

                let instillation = PFInstallation.currentInstallation()
                instillation["user"] = PFUser.currentUser()
                instillation.saveInBackgroundWithBlock(nil)

                self.performSegueWithIdentifier("toTimeline", sender: self)

            } else {

                // self.enterButton.enabled = false


                self.errorAlert()

                print("Couldn't log in...")


            }

        }

    } else  {
        print("IT IS FALSE")
        self.performSegueWithIdentifier("continueTheSignIn", sender: self)


       // self.move()

    }

The program will perform the toTimeline segue, but not the continueTheSignIn . I don't see any logical reason that this is not working. Could anyone point me in the right direction?

Also, I am having an error in my messages feature.

cell.textView!.linkTextAttributes = [NSForegroundColorAttributeName:cell.textView!.textColor]

This is giving me the error "Cannot assign a value of type '[String : UIColor?]' to a value of type '[String: AnyObject]!'

I was not previously getting this error in Swift / Xcode 6.4, so I don't know how to fix it.

Additionally, once I bypass this to get into my app to see if my other features are working, most of my UITableViews are not displaying any information. One is, however the rest load the correct amount of rows, but display nothing. What could this be? Also, no Parse pictures are being displayed correctly either. These are even more concerning than the other problems...

Here is the picture after I deleted and re added the segue under a diff. name. enter image description here

1

There are 1 best solutions below

2
On

Parse wont support the beta version . it needs a full version . I have contacted them based on a similar issue . They said they will update the parse to work with xcode7 once the full version of xcode7 is released.