我有接口:
@interface Box : CDVPlugin <UITableViewDataSource, UITableViewDelegate, UISearchDisplayDelegate>
现在,在一个事件之后,我想用不同类型的数据显示 tableView。我创建了一个 tableView 并添加它......它的工作
UITableView *tView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 150, 150)];
[[self.webView superview] addSubview:tView];
我怎样才能连接它做一个数据源?
我尝试添加:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
但它永远不会停在那里,桌子总是空的。如何将其连接到数据(NSMutableArray)?