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 Objective-C Working With Multiple View Controllers Recap of iOS Basics

we have a method called - (IBAction)buttonPress. My question is why that we donot need to declare it in header file?

As the title.

Jhoan Arango
Jhoan Arango
14,575 Points

I don't understand the question, try to explain it better please.

Thank you

1 Answer

Code Junkie
Code Junkie
3,786 Points

Actually, there is no need of declaring this function in our header file. This is because we only need the method declarations for those which is to be accessed in other files. So in this case our button pressed function will only be limited to the file in which it has been created. Hope you got the point.