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

felix flores
felix flores
850 Points

Implementation File -> 1 Issue -> Semantic Issue

Hello Everyone, My first app is ready to be submitted to apple store and is running properly, however when running the editor finds 1 issue in the implementation file. The issue says Semantic issue -> Incomplete Implimentation in the View Controller. Does any one possible help to get rid of this "warning" ? Do you guys know if I can upload it to app with this issue? Thanks

2 Answers

Dimitris Sotiris Tsolis
Dimitris Sotiris Tsolis
27,661 Points

Hello felix! This warning means that you didn't implement a method that you have declared into ViewController's header file or didn't implement a method non-optional method from a protocol. For example, if your ViewController conforms to the UITableViewDataSource protocol you have to implement tableView:cellForRowAtIndexPath: method for sure. Notice that this warning doesn't necessary mean that your app will crash or anything but that you just missed a method's implementation.

felix flores
felix flores
850 Points

Ohh I will check what I missed in my code. Thanks a lot