1
vote
1answer
123 views

How to fit UITableview with iPhone 5 screen size?

I have tried the solution from image in this post. However, it only works when the screen is first loaded, when the app goes back to that screen again from the screen's child, it goes back to cut off ...
-2
votes
7answers
168 views

coding for iphone 5 screen

I have taken a universal project. I have coded for iPhone 5 screen but it doesn't detect it. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { //ui for ipad } else if ...
0
votes
1answer
168 views

UITableview bottom is cut off on iphone5

Let me preface this by saying this works perfectly on the iphone 4 - retina and regular. I have a grouped table that has 4 sections. to set it up i use the dispatch_async stuff in viewWillAppear to ...
0
votes
0answers
52 views

Setting UITableView Height programmatically works weird

I have tableview in my controller for which I set up frame programmatically. Lets say each row height for tableview is 40. When I want to present tableview I execute following codes. double ...
0
votes
0answers
107 views

iPhone 5 UITableviewcell subview not displaying in device

I developed an application which contain tableview.The table cell has three subviews added.My problem is that the table is displaying the data well in iPhone 4s but it is not showing the data in ...
0
votes
1answer
282 views

Static UITableView on iPhone 5

The main screen of my app is a static table view with some options. With the new iPhone 5 I have to deal with an extra space on the bottom of the screen: I would like to increase the height of the ...
0
votes
0answers
92 views

UITableView ignoring method call only on iPhone 5

This seems strange, and maybe I don't have the issue fully nailed, but I am perplexed. In my app, I present a UITableView modally in a VC and have created a custom init method to additionally send an ...
1
vote
1answer
238 views

UITableView static cell resize for iPhone 5

I have seen the many threads on dealing with the iPhone 5 screen, and I have a Default-568h@2x.png added. The top view of my App resizes accordingly, but I have a container that contains a ...
0
votes
1answer
250 views

iOS - iPhone 5 Can't Scroll to the Bottom of TableView

I am testing my application on the iPHone 5. I have a UITableView with about 80 entries and it seems to work just fine on the iPhone 5 except that the last 4 entries are past the screen when I hit the ...