-5

我有一个 Javascript 数组,它通过NSArray. 我可以通过UILabel以下代码让这个数组显示出来:

NSString *testArrayString = [webView stringByEvaluatingJavaScriptFromString:@"testString"];
NSArray *testArray = [testArrayString componentsSeparatedByString:@"#"];
NSLog(@"%@", testArray);


self->myLabel.text = [testArray componentsJoinedByString:@","];

而不是 a UILabel,如果我希望它与 a 一起使用UITableView,我怎么能这样做呢?

4

2 回答 2

2

A. 使您的 testArray 成为 iVar 或属性

B.假设你已经创建了一个tableView

C. 为UITableView实现以下数据源:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return  1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return testArray.count;  //for property use self.testArray.count instead
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }
    cell.textLabel.text = [testArray objectAtIndex:indexPath.row];
return cell;
}
于 2013-08-22T21:09:56.370 回答
2

我将这篇博文保存在我的草稿文件夹中一段时间​​。你的问题让我记住了并发表了这篇文章:

http://appsylvania.com/post/59049992843/introduction-to-uitableview

前几天我也在这里回答了一个类似的问题:

https://stackoverflow.com/a/18322362/186911

祝你好运,先生。

于 2013-08-22T23:25:51.603 回答