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 Build a Playlist Browser with Swift Working With Multiple View Controllers Segues

error code: Thread 1: breakpoint 1.1 on my master detail view controller

whenever i try to launch my app to see if it will change between the view controllers it crashes and shows me this:

import UIKit

class PlaylistMasterViewController: UIViewController {

@IBOutlet weak var button: UIButton!



override func viewDidLoad() {
    super.viewDidLoad()

}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()

}

}

2 Answers

Caleb Kleveter
MOD
Caleb Kleveter
Treehouse Moderator 37,862 Points

Look in the gutter between the code and file manager (if that's the right name), you will probably see a fat, blue arrow; right click on it and select "delete break" point.

thanks, problem solved