0
私はクラスに設定サブビューとのXIBを持っている:S7GraphView(私はそれを選択し、アイデンティティインスペクタをクリックした場合)ViewController nibのサブビューにs7graphviewを追加するには?
は、私は(無効)didViewLoad {を持っているすべての...
s7graphView = [[S7GraphView alloc] initWithFrame:[self.view bounds]];
//[self.view addSubview:s7graphView];
s7graphView.dataSource = self;
...
}
ペンで、ファイルの所有者をサブビューに制御し、- S7GraphView
を選択してください。はまだシミュレータに空のが表示されます。私はこのすべてをコメントアウトした場合
が、私は黒のサブビューを取得する(私は黒に背景を設定します)ではなく、グラフ:
// s7graphView = [[S7GraphView alloc] initWithFrame:[self.view bounds]];
// //[self.view addSubview:s7graphView];
// s7graphView.dataSource = self;
// [s7graphView release];
私は私のビューからサブビューを削除し、代わりに、プログラムを追加した場合、これを追加すると動作します:
s7graphView = [[S7GraphView alloc] initWithFrame:CGRectMake(20., 70., 280.0, 240.0)];
[self.view addSubview:s7graphView];
s7graphView.dataSource = self; [s7graphView release];
xibでも追加できますか?私は間違っていると思いますか?
ありがとうございます!