I have created application in iPhone OS 2.2.1 which contains one table view and text view .
Whole application is working fine in all iPhone OS version except 3.0.
In iPhone OS 3.0 when I press next button then table view reloads so while reloading it shows some line in between the cells.
So can any one suggest me what will be the problem in OS 3.0?
Code on next button:
lblNo.text = [NSString stringWithFormat:@"%d/%d",Count,QUESTION];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:kTransitionDuration];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.view cache:YES];
[tblView reloadData];
[UIView commitAnimations];