我一直在犯错,但我不确定原因。我导入了所有必需的类,并声明了属性。任何帮助表示赞赏。我在下面提供了代码:
// NewModuleViewController.h
#import <UIKit/UIKit.h>
@interface NewModuleViewController : UIViewController {
UITextField *textModuleCode;
UITextField *textModuleTitle;
}
@property (strong, nonatomic) IBOutlet UITextField *textModuleCode;
@property (strong, nonatomic) IBOutlet UITextField *textModuelTitle;
@end
// NewModuleViewController.m
#import "NewModuleViewController.h"
#import "AppDelegate.h"
@interface NewModuleViewController ()
@end
@implementation NewModuleViewController
@synthesize textModuleCode, textModuleTitle;
....
答案 0 :(得分:4)
因为您在textModuelTitle
textModuleTitle
而不是.h