2011-04-09 88 views
0

嗨,我知道原因造成的進口頭預期說明符限定符列表錯誤

但在我而言,我已經包括了頭,但我還是得到了錯誤的缺席這個問題?怎麼了?

#import <Foundation/Foundation.h> 
#import "WikitudeARCustomMenuButtonDelegate.h" 
#import "DetailedARViewController.h" 

@interface CustomMenuButtonDelegateImpl1 : NSObject <WikitudeARCustomMenuButtonDelegate> 
{ 
    DetailedARViewController *ARViewController; 

} 


@end 
+0

WikitudeARCustomMenuButtonDelegate.h和DetailedARViewController.h的內容是什麼? – 2011-04-09 03:57:43

+0

WikitudeARCustomMenuButtonDelegate.h是一個協議。 – Birdkingz 2011-04-09 04:38:02

+0

DetailedARViewController.h是我自己的類。 – Birdkingz 2011-04-09 04:38:22

回答

1

確保 「DetailedARViewController.h」 確實定義DetailedARViewController;特別是檢查錯誤拼寫或聲明意外註釋等細微錯誤。

相關問題