0
votes
1answer
1 views
UIViewContainer with UITableVIewContainer subView, UITableViewContainer.View leaves gap at top
I have a UIViewController with a UISegmentedControl that swaps out one of 3 UITableViewControllers depending up the pressed segment selected. Everything works great, except the UIT …
0
votes
0answers
8 views
Crash when moving a row in UITableView
Here is the exception:
Serious application error. Exception was caught during
Core Data change processing: *** -[NSCFArray removeObjectAtIndex:]:
index (0) beyond bounds (0) wi …
1
vote
2answers
61 views
How can I edit a mutable property in Objective C?
Hello.
I am trying to edit a mutable array from a property and can't seem to directly make it work. Consider the following code that seems to work, but seems also very ineffici …
0
votes
1answer
16 views
How do I access the UITableView in the XCode “Navigation Based Application”
This "wizard" gives me a tableview to work with when I build and run. RootViewController is subclassing UITableViewController. Opening up the XIB, there is a table view, but what …
1
vote
1answer
140 views
Core Data backed UITableView with indexing
I am trying to implement a Core Data backed UITableView that supports indexing (eg: the characters that appear down the side, and the section headers that go with them). I have no …
0
votes
1answer
41 views
iPhone: UITableView scrolling under Tab Bar
I've got a UITableView and I can't figure out how to get the size right.
My app is based on the Tab Navigator template. One tab's view loads a NIB that contains a Navigation Contr …
0
votes
3answers
41 views
Is it possible to access a UITableView’s ScrollView In Code From A Nib?
Right now I am creating a UITableView in a FlipsideView nib. I don't seem to be able to change the background of the table view from within interface builder. I can fix this by c …
1
vote
1answer
31 views
Replace Xcode’s Navigation template UITableViewController with a UIViewController and UITableView
Is there any simple way to replace a UITableViewController from Xcode's "Navigation based application" with Core Data with a UIViewController containing a UITableView?
I'm looking …
0
votes
1answer
21 views
Scrolling the table view after reloading uitableview
In my application, I want to append cells to the current tableview and have it scroll to the first added cell after the cells have all been appended. I have done the appended code …
0
votes
1answer
28 views
Present Navigation Table View modally, who is the delegate?
Basically I have a hierarchy of locations: country, state/prov, city.
I want to present an "Add Location" modal table using a delegate.
I realize the best way to do this is to p …
0
votes
0answers
23 views
How to switch one view with one UIButton on it,to the one with navigation controller using thatUIButton ?
i am making an application with login view. This is just simple UIViewController with one UIbutton on it.I have another UINavigatioController having UITableView as RootViewContolle …
0
votes
1answer
55 views
Load UITableView inside a UIView
Do I need a UITableViewController in addition to my UIViewController if I want to load a UITableView as a subview along with several other views at one time?
2
votes
2answers
199 views
Add toolbar to UITableViewController
What is the simplest way to add UIToolBar to UITableViewController? I'm depending on edit functionality, so I can't change UITableViewController to UIViewController easily.
0
votes
1answer
49 views
How do I do a View Transition in an iPhone app without allowing back?
This is a total noob question.
I have a starting view -- it's very simple: just some text and a button. When the user clicks the button, I want to go to the real "meat" of the app …
1
vote
4answers
53 views
Is it possible to programatically set a UITableViewController’s dataSource?
I've created an application using the Navigation-based template in Xcode. I've also created a class that implements the UITableViewDataSource protocol and would like to use it for …
