#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;"の "NotepadViewControllerの前にExpected specifier-qualifier-list"というエラーが表示されます。私はすでにそのクラスのヘッダーをインポートしたので、型として検出する必要があります。エラーの前に特定の修飾子リストが必要です
もう一度きれいにして構築してください – onmyway133