Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

felix flores
850 PointsImplementation 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
27,477 PointsHello 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
850 PointsOhh I will check what I missed in my code. Thanks a lot