I am new to iPhone development and I am currently working on a simple RSS reader app. The problem I am having is that I need to reposition the textLabel
inside the UITableViewCells
. I have tried setFrame
or setCenter
but it doesn't do anything. Does anyone know what I need to do inside the tableView:cellForRowAtIndexPath:
method to reposition the textLabel
at the top of the cell (x = 0, y = 0)?
Thank you
PS: The UITableViewCell
is referenced by a variable called cell
. I have tried [cell setFrame:CGRectMake(0, 0, 320, 20)]
with no success.