0

我已经创建了一个NSarray,现在我想根据它们的索引在标签中显示它的数据。

但不想在表格视图单元格中显示它们。
我想以简单的标签显示它们。

4

2 回答 2

1
for (int i=0; i<[yourArr count]; i++) {
    yourLblObject.text=[NSString stringWithFormat:@"%@",[yourArr objectAtIndex:i]];
}
于 2012-05-02T05:26:36.293 回答
1

使用此代码我认为这将对您有所帮助

 -(void)viewdidload
   {
 playerScores = [[NSArray arrayWithObjects:@"1",@"2",@"3",@"4",@"5",@"6",@"7",@"8",@"9",@"10",@"11",@"12",@"13",@"14",@"15",@"16",@"17",@"18",nil] retain];
 CGFloat y = 20;
for (int i = 0;i<[playerScores count];i++) {
    myLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, y, 60, 60)];
    myLabel.backgroundColor=[UIColor clearColor];

    [myLabel setFont:[UIFont fontWithName:@"Helvetica-Bold" size:35]];
    NSString *text = [NSString stringWithFormat:[playerScores objectAtIndex:i]];
    [myLabel setText:text];

    [yardsScrollView addSubview:myLabel];
    [myLabel release];
    y = y+125;
}


 }
于 2012-05-02T05:27:15.210 回答