上記のエラーが発生し続けますが、その理由はわかりません。必要なクラスをすべてインポートし、プロパティを宣言しました。どんな助けでも大歓迎です。以下のコードを含めました。
// 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;
....