开发者

Expected specifier-qualifier-list before error

开发者 https://www.devze.com 2023-03-16 00:43 出处:网络
#import <UIKit/UIKit.h> #import \"NotepadViewController.h\" #import \"NotesTableViewController.h\"
#import <UIKit/UIKit.h>
#import "NotepadViewController.h"
#import "NotesTableViewController.h"
#import "NoteInformationTransferProtocol.h"

@interface NotesViewController : UIViewController <NoteInformationTransferProtocol>
{
    UITextField *_noteTitleTextField;
    UIButton *_addButton;
    UITextField *_descr开发者_Go百科iption;
    UIView *_notesTableView;

    NotepadViewController * _notepadVC;
    NotesTableViewController *_noteTableVC;        
}

I am getting the error "Expected specifier-qualifier-list before NotepadViewController" on "NotepadViewController * _notepadVC;" I already imported that class' header so it should detect it as a type, right?


That error normally occurs when you haven't added a framework or file to your target, is "NotepadViewController.h" in the target you are building?

In xCode 4 you can check this by expanding the "Compile Sources" section in Build Phases. In xCode 3 you can use "Get info" to see what targets that file is included (if my memory serves me true)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号