【发布时间】:2011-09-25 05:02:19
【问题描述】:
#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 之前的预期说明符限定符列表”我已经导入了该类的标头,所以它应该将其检测为一种类型,对吧?
【问题讨论】:
-
只需清理并再次构建
标签: objective-c ios list specifier