Tag: gdataxml

属性不能在前向类对象中find

我正在修改本教程到我的应用程序,我已经把它归结为最后一个错误,这阻止了我的轨道。 该程序无法find另一个文件中的属性,但该属性是明确定义的。 这是有问题的代码: 实际的错误行: for (DTContact *dtc in _dtContact.contact) { 文件的.h和有问题的项目: #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 它与_dtContact.contact有问题。 它无法在文件DTCXMLResponse中find联系人。 […]