#import <UIKit/UIKit.h>
#import "NotepadViewController.h"
#import "NotesTableViewController.h"
#import "NoteInformationTransferProtocol.h"
@interface NotesViewController : UIViewController <NoteInformationTransferProtocol>
{
UITextField *_noteTitleTextField;
UIButton *_addButton;
UITextField *_description;
UIView *_notesTableView;
NotepadViewController * _notepadVC;
NotesTableViewController *_noteTableVC;
}
「NotepadViewController * _notepadVC;」で「Expected specifier-qualifier-list before NotepadViewController」というエラーが表示されます。私はすでにそのクラスのヘッダーをインポートしているので、それをタイプとして検出する必要がありますよね?