I have two arrays1)image_array and 2)text_array.I know how to display images and text .
 cell.imageView.image = [UIImage imageNamed:[text objectAtIndex:indexPath.row]];
    cell.textLabel.text = [arry objectAtIndex:indexPath.row];   
it's showing like
image1     text1
image2     text2
image3     text3
|
|
image7     text7
But I need like
    image1
    text1
    image2
    text2
|
|
    image7
    text7
Please give me any idea.Thanks in Advanced.