lychee
lychee

Reputation: 1851

App doesn't launch after adding a method (Xcode 7.2)

I'm new to Cocoa and Mac programming so sorry if this is a bad question,but I got frustrated and I don't know what to do. Heres my ViewController files (Appdelegate.h and .m is left untouched to default)enter image description here

Up to this point everything works as expected, App compiles and runs without a problem. but when I start adding some logic to a method updateDetailViews I get this: enter image description here

How to fix it?

Upvotes: 0

Views: 261

Answers (1)

Dhruv Khatri
Dhruv Khatri

Reputation: 21

You can run your application removing the blue arrow. (Use drag and drop to remove). It is use to check your function is called or not while your application is running. So when it call your application stop running and show this line. You can run again using the play type button from console.

Upvotes: 2

Related Questions