0

我有一个数组,我在其中插入了 sqlite 中所有不同的值并存储在表中,但是当我访问数组时,它显示所有数组 indexex 的相同值我在数组中有四个项目

这就是我添加项目的方式

    for (int i = 0; i<[surveyQuestions count]; i++) {

      QuestionData*data=[surveyQuestions objectAtIndex:i];



      question_text=data.question_text;
      question_type=data.question_type;

      coffeeObj.question_text =question_text;
      coffeeObj.question_type=question_type;



      NSLog(@"Inserted question %@",question_text);





       [appDelegate addCoffee:coffeeObj];





      }



 - (void) addCoffee:(QuestionData *)coffeeObj {

    [coffeeObj addCoffee];

    [coffeeArray addObject:coffeeObj];

    NSLog(@"Succeessfully Added");


    }



for(int j=0;j<countmine;j++)
{
     QuestionData*data=[appDelegate.coffeeArray objectAtIndex:j];
     NSString*myTest=data.question_text;
     NSLog(myTest);
     QuestionData*dataset=[appDelegate.coffeeArray objectAtIndex:0];
     questionTextLabel.text=dataset.question_text;
}

在数据库中,我正在添加数组,但它始终显示数据库中每个索引中的最后一个输入值

4

1 回答 1

0

您在将值分配给 questionTextLabel 时使用了索引 0。你应该在这里使用“j”。

//In your answer its 0 here
 QuestionData*dataset=[appDelegate.coffeeArray objectAtIndex:j];     

 questionTextLabel.text=dataset.question_text;
于 2012-07-31T07:21:42.730 回答