自己の代わりに別のビューを渡す可能性はありますか??
self.tableViewControl.dataSource =self; self.tableViewControl.delegate=self;
私はこれを試しました:
thirdView *tv=[[thirdView alloc]init];
self.tableViewControl.dataSource =tv;
self.tableViewControl.delegate=tv;
cellForRowAtIndexPath と必要なすべての関数を thirdView.m ファイルに入れましたが、アプリがクラッシュします。
私はiosの初心者です。