を認識しません、私は私の#import "Controller.h"
上で、次のエラーを取得していますなぜここに私のヘッダファイルはなぜObjective Cの実装ファイルはここに私のimport文
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import <PolygonShape.h>
@interface Controller : NSObject {
IBOutlet UIButton *decreaseButton;
IBOutlet UIButton *increaseButton;
IBOutlet UILabel *numberOfSidesLabel;
//IBOutlet PolygonShape *shape;
}
- (IBAction)decrease;
- (IBAction)increase;
@end
は私の実装ファイルが
#import "Controller.h"
@implementation Controller
- (IBAction)decrease {
//shape.numberOfSides -= 1;
}
- (IBAction)increase {
//shape.numberOfSides += 1;
}
@end
ですライン?
error: PolygonShape.h: No such file or directory
PolygonShape.hと.mファイルは、同じプロジェクトにあり、Controllerクラスと同じディレクトリにあります。
あなたはPolygonShapeファイルをターゲットに追加されていることを確認してきた、このエラーが出るのだろうか? – teabot