I'm writing my first iphone app and through several examples I've got a UITableView which is displaying some records from an sqlite db. I placed the element through IB and then had to set it's height inside of my view controller, in the viewDidLoad method:

self.tableView.frame = CGRectMake(0,150,320,300);

While the positioning appears to be working properly, a text field, button and label I originally had on the page are now being covered by a white area. Am I not positioning this table properly?

They're all within the same view - do I need to use multiple views?

Here is what the running app looks like: http://tinypic.com/r/2n7qj35/5

Here is what the IB view looks like: (before the table was ever added, the text/button stuff showed up just fine): http://tinypic.com/r/1491kw4/5

link|improve this question

61% accept rate
Can you post a picture? – Jordan Mar 10 '10 at 2:29
OK. Post your codes so we can see what's going on. – Jordan Mar 10 '10 at 20:06
I did, see the link from below: github.com/botskonet/inmyspot – BotskoNet Mar 10 '10 at 21:10
feedback

1 Answer

up vote 0 down vote accepted

You'll need to resize the tableView or move the other objects ( a text field, button and label ) around to accommodate the tableView.

link|improve this answer
I've added the images. As far as I know, they should not be covering each other up, but something isn't working. – BotskoNet Mar 10 '10 at 4:08
Looks like frame on tableView not set properly, or you've also added another UIView. Can you post your code? – Jordan Mar 10 '10 at 4:46
Latest code can be found here: github.com/botskonet/inmyspot – BotskoNet Mar 10 '10 at 4:52
Do you see anything? I can't seem to find any helpful info on the web so I'm not sure what else to try. – BotskoNet Mar 10 '10 at 19:48
Ok, so my "solution" is possibly how I should have built this originally, was to move the text field, button, and label to another view, and add that new view first, and then load the table view. So far everything seems to be looking right and working right in the simulator. – BotskoNet Mar 10 '10 at 22:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.