-5

を介してObjective-CにプッシュされたJavascript配列がありますNSArrayUILabelこのコードを使用して、この配列を表示することができます。

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


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

の代わりに、UILabelこれを で動作させたい場合、どうすればそれを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 に答える