I haven’t found a good answer to this, and I must be dense, but…
I’m trying to get a table view set up with an image and a label in each row. The image would be an indicator image (New, In Progress, Stopped, Finished, ect.) and the label would be a particular issue name.
I can set up the table view normally with one column, but I can’t find anything (in the code or in the Interface Builder) that sets the number of columns for a table. I assume I would have to set up two columns for the table.
After that, I also need help on how I add the image to the first column and add the label to the second column. Basically, I want the same functionality and appearance you get from the iPhone’s native Photo Album app, which shows a thumbnail on the left and a label in the center. And please treat me like I’m stupid, as I’ve searched all over, and everyone on the internet seems to have an option in the IB for table views that sets the number of columns…everyone but me. 😛
Your best course of action is to create your own custom UITableViewCell and specifically design it to include an image and a text label. Anything beyond that means you’re going to have to start subclassing UITableView which isn’t for the faint of heart. Another option is to look into a 3rd party library such as AQGridView.