Chase
2008-12-22 07:17:58 UTC
---------------------
//This is the Checker.h file
#import
@interface Checker : NSObject {
IBOutlet id textField;
}
- (IBAction)checkPass:(id)sender;
@end
----------------------
----------------------
//This is the Checker.m file
#import "Checker.h"
@implementation Checker
- (IBAction)checkPass:(id)sender {
[textField - (void)takeStringValueFrom : (id)textField];
/*This is where error appears. takeStringValueFrom undeclared (first use in this function*/
}
@end
-----------------------
I hope somebody can help. It's irritating.