Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
だから私はこのメソッドを作成しました:
- (void)addToViewController:(SecViewController *)controller didFinishEnteringItem:(NSString *)item;` <br>
そして、 XcodeSecViewController *Expected a typeでエラーが発生し続けます。どういう意味ですか?SecViewControllerは型ではありませんか?
Xcode
Expected a type
宣言する必要がありますSecViewController:
SecViewController
@class SecViewController;
...ヘッダーの上部に。
#import注:すべての使用済みヘッダーだけではありません。これは、ヘッダーの依存関係を悪化させるだけです。
#import