私は理解できない奇妙な問題に直面しています。[コンセント] タブにコンセントが表示されていますが、ドラッグ アンド ドロップしようとすると表示されず、使用できません。私は以前にそのような問題に直面したことがないので、助けていただければ幸いです。
ファイルの所有者から直接、またはアウトレットタブからドラッグしようとすると、画像でわかるように、使用したい「ポイントオブジェクト」が表示されません。
私のViewControllerでは、これが見つかります
#import "PointObject.h"
@interface LandscapeViewController : UIViewController <UITableViewDelegate,
UITableViewDataSource, PointObjectDelegate>
{
// not relevant code up here
//----------------------------------------
/*
* for graph
*/
LandscapeGraphViewController * landscapeGraphViewController;
IBOutlet PointObject *pointObject;
IBOutlet UIButton *ZoomIn;
IBOutlet UIButton *ZoomOut;
}
// not relevant code below
私の PointObject.h には、これがあります
@class PointObject;
@protocol PointObjectDelegate
-(double)expressionResultForXValue: (CGFloat)x requestor: (PointObject *)pointObject;
@end
@interface PointObject : UIView
{
id<PointObjectDelegate> delegate;
CGFloat scale;
CGPoint originOffset;
}
-(void)reset;
@property (assign) id <PointObjectDelegate> delegate;
質問に関係のないコードを一部カットしています。ありがとうございました