Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

Bjorn Beishline
Bjorn Beishline
14,753 Points

This Is the Right Answer for Xcode 7

The problem most people have been having with there code is the as statement wanting to be as! I fixed this and ran the code no errors for me. <code> import UIKit

class PlaylistMasterViewController: UIViewController {

@IBOutlet weak var A_button: UIButton!


override func viewDidLoad() {
    super.viewDidLoad()

    A_button.setTitle("Press me!", forState: .Normal)

}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
    if segue.identifier == "showPlaylistDetail" {
        let playlistDetailController = segue.destinationViewController as! PlaylistDetailViewController
        playlistDetailController.segueLabelText = "Yay! You pressed the button!"

    }
}

} </code> if this doesen't work restart xcode or notify me so I can update this

1 Answer

Tommy Choe
Tommy Choe
38,156 Points

Hey Bjorn, curious, have you actually performed the segue with that identifier?