I\'ve been banging my head against the wall on this one for quite some time now. Any input or direction is greatly appreciated.
So the goal is the create a log in fo
Create a custom cell to place your text field, for the love of god. You shouldn't have addSubview:
related code in your tableView:cellForRowAtIndexPath:
; just code that allocates the cell, and configures the cell enough so that the cell itself can display things they way you want them.
Look at the table view suite for an example of how to use custom cells. I believe 4_ and 5_ have custom cells.