Search code examples
iphoneiosxmluiimageviewrss

UIImageView and UItextView inside TableView


I'm working on iOS RSS app, and my last view, which is a UIViewController, is similar to the attached image. I inserted in my DetailView.xib, one Image View to pass the images of the RSS feeds and two Text View to pass the title and summary respectively.

The question is, how can i make the same, but inside a UITableview?

Detail of Feed


Solution

  • you can use custom cells for it and can add this custom cell at particular index. At first index you just add image view and at second index you just add textview.

    Check out this pretty good tutorial Custom UITableViewCell Using Interface Builder.

    i hope it helps you.