私のクラス.hは次のようになります:
@protocol AppInfoDelegate;
@class InfoTextView;
@interface AppInfoViewController : UIViewController <AppInfoDelegate> {
}
@property (nonatomic, retain) NSArray *textObjectsArray;
@property (nonatomic, retain) InfoTextView *itView;
@property (nonatomic, retain) UIButton *pgBackButton;
@property (nonatomic, retain) UIButton *pgFwdButton;
@end
@protocol AppInfoDelegate <NSObject>
- (void)closeButtonPressed:(id)sender;
@end
AppInfoDelegateのプロトコル定義が見つからないという警告が表示されます。これを行うための適切な方法は何ですか?なぜそれが見つからないのですか?インターフェイスの前にプロトコルの完全な定義を持っている必要がありますか?ありがとう!