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.
cameryn smith
2,828 PointsHow do you know the return type of a method?
Oh yea, and when would you want a method to return void?
3 Answers

Alfian Losari
9,495 PointsIt depends, if you use an Object which is based on Cocoa Framework, then you must refer to the documentation of the class to know the return type of a method in Class. Here is the basic concept to read a method in Objective-C:
- (returnType) methodName:parameter1 ...:parameter2 ...:parameter3 ....;

Alfian Losari
9,495 PointsYou use void when you do not expect your method to return anything. You just want to run all the code in the method.Here is the example:
- (void)printDate: { NSLog(@"Date is %@", [NSDate Date]); }
cameryn smith
2,828 PointsThanks so much I'm getting it more as I go :)