I've created a custom cell class using these instructions: http://www.bdunagan.com/2009/06/28/custom-uitableviewcell-from-a-xib-in-interface-builder/
Now, I have two view controllers: MyPostsViewController
and CustomCellViewController
. The custom cell is just a cell with a UITableViewCell
and has two labels declared and connected. The MyPostsViewController
is a UITableView
that uses these custom cells. However, I am unsure how to access the two labels of the CustomCellViewController
from the MyPostsViewController
. I want to access them from the MyPostsViewController
because that is where the cellForRowAtIndexPath
method is and where I want to set the value of my labels at. How would I do this?