UITextView中的新行数据

时间:2010-08-30 07:06:26

标签: iphone

我是iphone prog的新手......

我正在使用UITextView从数据库中查看我的数据... 我的应用程序显示数据库中的高分....我将每行数据存储在字典中,然后将该字典存储在数组中...

然后我在这里反过来.... 这里nextclass是该类的对象,其中select命令的实际方法是...... 和highscore是我的textview

NSArray *得分= [nextclass得分];

NSMutableDictionary *DD;
int a = [scores count];
while(a>0)
{
    DD=[scores objectAtIndex:a-1];

    highscore.text=[NSString stringWithFormat:@"%@    --------------------------   %@",[DD objectForKey:@"name"],[DD objectForKey:@"score"]];
    a--;
}
问题是它取代了以前添加到textview中的数据..... 但我想逐行显示整个数据

等待你的回复......

请帮助.....

1 个答案:

答案 0 :(得分:1)

highscore.text=[NSString stringWithFormat:@"%@%@    --------------------------   %@",highscore.text, [DD objectForKey:@"name"],[DD objectForKey:@"score"]];

是一个选项,您也可以使用方法

  

stringByAppendingString