Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== returning multiple values ====== * correct example:<code objc> Bool isDir; // path is an NSString * // &isDir means the address of the isDir variable if([filemanager fileExistsAtPath:path isDirectory:&isDir] && !isDir){ // do something - we have a valid file that is not a directory } </code> * along with this, remember that just creating a pointer doesn't create anything in memory - incorrect example:<code objc> Bool *isDir; if([filemanager fileExistsAtPath:path isDirectory:isDir] && !isDir){ // !! THIS WILL NOT WORK !! } </code> docs/programming/cocoa_and_objective-c/returning_multiple_values.txt Last modified: 2008/08/03 00:25by 127.0.0.1