私はインターフェースを持っています:
@interface Box : CDVPlugin <UITableViewDataSource, UITableViewDelegate, UISearchDisplayDelegate>
イベントの後、別の種類のデータで tableView を表示したいと思います。私はtableViewを作成して追加しました...その作業
UITableView *tView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 150, 150)];
[[self.webView superview] addSubview:tView];
どうすればdataSourceに接続できますか??
追加してみました:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
しかし、そこで止まることはなく、テーブルは常に空です。それをデータ (NSMutableArray) に接続する方法は?