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

Ayinde Arnett
Ayinde Arnett
1,569 Points

Running on Device (Simple iphone app with swift 3)

I created the App as described and have tried to run it on my device (iphone 6s).

I keep getting an error "Thread 1: signal SIGABRT on the AppDelegate file. The error is on this line:

class AppDelegate: UIResponder, UIApplicationDelegate {

Has anyone experienced this before? What does it mean?

Christian Mangeng
Christian Mangeng
15,970 Points

I experienced such an error, too. Try right-clicking on the button (and also the label) to see if there are any items referenced twice (e.g. are there two entries for "touch up inside" or the button outlet). If so, remove all the duplicates.

Good luck