Я довольно новичок во всем этом.Я прочитал форумы, но не могу найти ответ.Я сделал простой тест с 20 вопросами (сформируйте текстовый файл)
Попытка заставить работать код arc4random () для случайного выбора вопросов.Это работает, но приложение вылетает в разное время.Может кто-нибудь дать мне совет?Благодарю.Вот мой код:
Код:
// Go to the next question
int i;
int j;
NSInteger row = 0;
i = 20; i > 1;
{
j = arc4random()%i;
questionNumber = j + 1;
if(questionNumber == 1)
{
row = questionNumber - 1;
}
else
{
row = ((questionNumber - 1) * 6);
}}
// Set the question string, and set the buttons the the answers
NSString *selected = [theQuiz objectAtIndex:row];
NSString *activeQuestion = [[NSString alloc] initWithFormat:@"%@", selected];
[answer1 setTitle:[theQuiz objectAtIndex:row+1] forState:UIControlStateNormal];
[answer2 setTitle:[theQuiz objectAtIndex:row+2] forState:UIControlStateNormal];
[answer3 setTitle:[theQuiz objectAtIndex:row+3] forState:UIControlStateNormal];
[answer4 setTitle:[theQuiz objectAtIndex:row+4] forState:UIControlStateNormal];
rightAnswer = [[theQuiz objectAtIndex:row+5] intValue];
// Set theQuestion label to the active question
theQuestion.text = activeQuestion;
// Start the timer for the countdown
timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(countDown) userInfo:nil repeats:YES];
[selected release];
[activeQuestion release];
}