Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Property cannot be found in forward class object

I'm adapting This tutorial to my app, and I've got it boiled down to one last error, which is stopping me in my tracks. The program is unable to find a property in another file, but that property is clearly defined. Here is the code in question:

The actual error line:

for (DTContact *dtc in _dtContact.contact) { 

the .h for the file, and items in question:

#import <UIKit/UIKit.h>  @class XMLTestViewController; @class DTCXMLResponse;  @interface XMLTestController : UIViewController{     UIWindow *window;     XMLTestViewController *viewController;     DTCXMLResponse *_dtContact; }   @property (nonatomic, retain) IBOutlet UIWindow *window; @property (nonatomic, retain) IBOutlet XMLTestViewController *viewController; @property (nonatomic, retain) DTCXMLResponse *dtContact;  @property (nonatomic, retain) IBOutlet UIButton *mybutton; -(IBAction)buttonClicked;  @end 

It's having issues with the _dtContact.contact. It can't find the contact in the file DTCXMLResponse. Here is the .h file and the section of the .m:

.h

#import <Foundation/Foundation.h>  @interface DTContactXMLResponse : NSObject {     NSMutableArray *_contact; }  @property (nonatomic, retain) NSMutableArray *contact;  @end 

.m

#import "DTCXMLResponse.h"  @implementation DTContactXMLResponse @synthesize contact = _contact;  - (id)init {      if ((self = [super init])) {         self.contact = [[NSMutableArray alloc] init];     }     return self;  }  @end 

So theres that. As you can see, I have 'contact' propertied in the DTCXMLResponse.h, and linked in the .m.

like image 640
Spencer Cole Avatar asked Dec 20 '11 15:12

Spencer Cole


1 Answers

This error usually points out that Xcode can not recognize your symbol. I can assume this is DTContact.

Try to insert this in your .h file:

#import DTContact.h 
like image 176
shannoga Avatar answered Sep 20 '22 17:09

shannoga