0

我是 iphone 开发的新手。我正在使用一个 tableView,它加载一个 UITableViewCell,里面有一个 UIlabel。在 cellForRowAtIndexPath 中,我想将所有单元格 textLabel 值存储在自定义 UILabel 中。只有一个表格视图单元格行。我们的 UILabel 框架与我在代码中提到的表格单元框架相同。从可变数组中,我得到不同的 indexPath 行单元格文本标签值。

这是我的代码..

- (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];
    }

    Cuisine *cuisine = [[Cuisine alloc] init];// Cuisine is my object entity class..

    //Custom UILabel

    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(5, 3, 310, 30)];
    label.textColor = [UIColor colorWithRed:57/255 green:57/255 blue:57/255 alpha:1.0];
    label.font = [UIFont fontWithName:@"HelveticaNeue" size:14];

    NSLog(@"array is = %@", array);
    label.text = [[array objectAtIndex:indexPath.row] cuisineName];// here i am getting  
    first cuisine name string value for 0 indexPath row.

    [cell addSubview:label];

   }
 return finalCell;
}

使用此代码,我得到 indexPath 第 0 行的第一个美食名称字符串值。那么如何在 UILabel 文本中显示所有数组的所有字符串值?

输出应该像..

名字1,名字2,名字3,名字4,名字......

提前致谢..

4

1 回答 1

0

只需像这样创建一个包含所有数组值的字符串,只需创建一个全局字符串,无论您在何处填充此数组,都可以使用该全局字符串执行此操作并在任何地方访问

NSString *str = @"";

for(int i=0;i<array.count;i++)
{
    NSString *cuisineName = [[array objectAtIndex:i] cuisineName]; 
    str = [str stringByAppendingFormat:@",%@",cuisineName];

}

现在在您的标签 Simple 中显示此字符串。

于 2013-09-14T06:01:14.073 回答