UITableView display multi image
How can I display m开发者_如何学编程ulti-image in UITableView?
You'll need to create a custom UITableViewCell by subclassing. There is an extensive tutorial about it here in the Apple Developer Center. There are also many tutorials about this in web, here is one I found.
You need to subclass UITableViewCell and add something like an NSArray of UIImage ivar to display in each cell (or 4 UIImage ivars if this number is fixed).
精彩评论