Hello, i am trying to create a simple puzzle game.. and i have an int[8][8] array that reprents the map.. each cell has a value which represents some item.
now i want to draw this map on the screen, i have an image file for each item. (each item has the same width and height)
i tried to do this with creating a UIImageView for each cell and add it to the View.
But what shall i do if the puzzle changes (it changes after each move.. so very often)? Remove all UIImageViews and create new..?
I do all the logic with the int[][] map..
What would you reccommend me to draw the map ?
Thank you, chris