Tagged Questions
The UITableViewController class is a iOS UIViewController subclass that creates a controller object that manages a table view.
46
votes
2answers
14k views
UITableView backgroundColor always gray on iPad
When I set the backgroundColor for my UITableView it works fine on iPhone (device and simulator) but NOT on the iPad simulator. Instead I get a light gray background for any color I set including ...
18
votes
2answers
9k views
Can you add a UITableViewController's TableView to another View?
I've inserted a UITableViewController and it's corresponding UITableView into a simple IB document. The goal is to include the UITableView inside of a parent UIWindow (or UIView) with other "stuff" ...
14
votes
3answers
9k 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.
13
votes
8answers
957 views
Custom UITableView headerView disappears after memory warning
I have a UITableViewController. I create a custom headerView for it's tableView in the loadView method like so:
(void)loadView {
[super loadView];
UIView* containerView = [[UIView alloc] ...
10
votes
5answers
10k views
UITableview: How to Disable Selection for Some Rows but Not Others
I am new to iPhone development. I am displaying in a group tableview contents parsed from XML.I want to disable the click event on it (I should not be able to click it at all.) The table contains two ...
8
votes
2answers
10k views
Calculating multiline text height for UILabel/UITableViewCell: different results when calculating vs actual drawing
This general topic has been asked here multiple times: how to render UITableViewCells with varying amount of text and thus varying height. The canonical answer is: you calculate the height in table ...
8
votes
4answers
7k views
Delayed UIImageView Rendering in UITableView
Ok, I've got a UITableView with custom UITableViewCells that each contain a UIImageView whose images are being downloaded asynchronously via an NSURLConnection. All pretty standard stuff...
The issue ...
7
votes
9answers
693 views
How can I speed up a UITableView?
I have a UITableView with about 400 cells in 200 sections and it's a little sluggish in responding to user interaction (scrolling, selecting cells.) I've made sure the methods for retrieving cells and ...
7
votes
1answer
721 views
why does this different “addSubView” code cause differences in behavior
Why does changing the below code from the Old to New entry fix the following problem.
Code:
// OLD Entry - Did not work
//[self.window addSubview:navigationController.view];
// NEW Entry - ...
7
votes
2answers
4k views
iPhone: Show modal UITableViewController with Navigation bar
I am showing a modal view which is a UITableViewController class. For some reason it won't show the navigation bar when I show it. Here is my code:
SettingsCreateAccount *detailViewController = ...
7
votes
3answers
2k views
Enable editing does not call didSelectRowAtIndexPath?
I have a UITableViewController where the user should be able to edit the items. In order to enable editing i use this :
self.navigationItem.rightBarButtonItem = self.editButtonItem;
And for ...
7
votes
1answer
2k views
resizing UITableView to fit content
I am creating an app which will have a question in a UILabel and a multiple choice answers displayed in UITableView, each row showing a multiple choice. Questions and answers will vary, so I need this ...
6
votes
1answer
192 views
How do I “connect” a table view to a view controller
Alright, I know this is a vague conceptual question, but I really need help here. Thanks in advance if you decide to take the time to read this. I would never even consider writing this much except ...
6
votes
3answers
3k views
Problems with UINavigationController inside of UITabBarController, viewWillAppear not called
As an overview, I'm having issues with a UINavigationController inside of a UITabBarController calling viewWillAppear whenever a view is popped from the stack.
From the delegate, a ...
6
votes
4answers
4k views
Tweetie like swipe menu
How can I implement tweetie like swipe menu?
I'm done with developing a tableviewcontroller with a customcell. The customcell implements touchesbegan and touchesMoved. It also reports swipe gestures ...
5
votes
1answer
2k views
Changing the color of UITableView section headers
OK, I know that this has been asked previously, so please forgive me for asking again. It just seems like there has got to be an easier way to do this.
Is there a 'simple' way to change the ...
5
votes
5answers
4k views
UITextField subview of UITableViewCell to become first responder?
I have a core data application which uses a navigation controller to drill down to a detail view and then if you edit one of the rows of data in the detail view you get taken to an Edit View for the ...
5
votes
3answers
7k views
how to set a tableview delegate
I'm trying to use a tableview without using a nib and without using a UITableViewController.
I have added a UITableView instance to a UIViewController Like So
mytable = [[UITableView alloc] ...
5
votes
1answer
6k views
Frame of viewForHeaderInSection is always the same size
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
if(section != 0) {
UIView *view = [[[UIView alloc] initWithFrame:CGRectMake(10, 10, 100, 30)] ...
5
votes
2answers
5k views
Redraw UITableView after updating data
Hi
I have a UITableview that I load with data async so the tableview might appear without data.
I have tired the ReloadData method but the tableview remains empty until I scroll the tableview, ...
5
votes
6answers
6k views
Refreshing the UITableView from UITableViewCell
Is there an easy way to trigger a [UITableView reloadData] from within a UITableViewCell? I am loading remote images to be displayed after the initial table display, and updating the image with ...
4
votes
1answer
564 views
“Attempt to create two animations for cell” Crash on ios
Here is my first post on stackoverflow. Any of your help will be greatly appreciated!
I am totally new to ios development. As a practice, I am trying to develop a simple app that keeps track of ...
4
votes
1answer
336 views
TableView background Image in iPad Application
I have following code which works fine in iPhone application but in iPad I always get grey/light blue background colour. Even if I change background colour it does not take effect.
[self.tableView ...
4
votes
1answer
3k views
How to add a navigationController to a view-based application
Is it possible to add a navigationController to a view application that inherits from UIViewController and not UITableViewController? How is it done?
4
votes
1answer
1k views
UITableView(Controller) - Hide empty rows
I am trying to create a UITableView that only displays the number of rows that have data content in them. This is a menu system, and suppose there are 5 choices in the particular menu, I only want to ...
4
votes
2answers
506 views
iPhone UI: No edit button for UITableView, bad idea?
I have a UITableViewController which lets the user drill down into different records. On the second level/view, the user can add and edit new records. But, I am not sure what to do, since the back ...
4
votes
3answers
1k views
How to implement “Load 25 More” in UITableViewController
I am working on an iphone application. Application loads plenty of records from a webservice into table view controller. I would like to load 25 records initially and remaining in 25 batch on clicking ...
4
votes
2answers
827 views
Another take on the “keyboard obscures UITextField” problem
I know that this is a common problem and the UITableViewController fixed this is iPhone SDK 3.0, but the UITableViewController is not working as I expect, probably due to how I am using it. Here's my ...
4
votes
3answers
12k views
iPhone UITableView PlainStyle with custom background image - done “entirely” in code
I have been all over the place, seems the UITableView with a static background issue is well documented, but no one with a straight forward solution?
Im building my TableViews entirely in code, like ...
4
votes
1answer
6k 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 problems at all ...
3
votes
2answers
480 views
Scroll to TableViewHeader using “tableView:sectionForSectionIndexTitle:atIndex:” help?
I added a search bar into my TableViewController's header, and I've also added a "{search}" to the "sectionIndexTitlesForTableView" array. Now on the right side, I got the letters of the alphabet + ...
3
votes
3answers
599 views
get JSON / XML from Rails to iOS (xcode 4) table view
We tried some ways but with no luck. So post to here to ask for help.
We have a rails application which could generate XML and JSON responses (some restful routes and some custome routes).
And we ...
3
votes
1answer
4k views
How to add a UIToolbar to a UITableViewController programmatically?
I have opted to use a UITableViewController without a nib. I need a UIToolbar at the bottom with two buttons. What is the simplest way of doing that?
P.S. I know that I can easily use a ...
3
votes
4answers
5k views
How do I add a Navigation Bar to a UITableViewController in Interface Builder?
Interface builder does not let me click and drag a Navigation Bar onto a Table View Controller!!! It is super frustrating.
All I want is a table view with an edit button (done in interface-builder). ...
3
votes
3answers
967 views
Why isn't a registered UIDeviceOrientationDidChangeNotification always called?
I wrote a simple view controller that shows a modal popup dialog. Because it creates a new window to lay over the entire screen, I've added a UIDeviceOrientationDidChangeNotification observer that ...
3
votes
2answers
142 views
how can I display MSMutableArray data in UITableViewController?
I am getting data from NSTextField, and saving data in NSMutableArray. I want to show the same data in another class which in child of UITableViewController.
How can I show data of NSMutableArray to ...
3
votes
2answers
726 views
Show custom label when no data available for tableView
The app in question has a the ability for users to mark items as favorites. When the user has no favorites saved, I'd like to notify them of the fact (mostly I hate the idea of a blank tableView).
...
3
votes
1answer
302 views
How to display my iOS apps list to table view controller in my app?
What I want to do is figure out one way to display all my iOS apps in iTune store in my application with UITableViewController.
For example, when I search in iTune with keyword "xcodechina",it will ...
3
votes
2answers
293 views
tableview disappears after changing view size
following code:
self.dataTableViewController = [[DataTableViewController alloc] initWithStyle:UITableViewStylePlain];
CGRect tableViewRect = self.dataTableViewController.view.frame;
...
3
votes
2answers
172 views
How to create numbers with rounded background in UITableViewCell (like the email app)?
In the email app, on the overview page, you can see a summary of the number of new emails you have in your accounts. Does anyone know how to create the numbers on the rounded background?
3
votes
4answers
2k views
UITableViewController with picker view
I've a serious problem, and I cannot solve it by myself. I've spent hours searching the documentations, programming guides as well as developer forums and stack overflow.
The problem is I want to ...
3
votes
2answers
1k views
UITableView reloadData - cellForRowAtIndexPath not fired
I have splitViewController which has as MasterViewController some viewController and as DetailViewController some tableViewController. When I push a button on masterViewController I want to show new ...
3
votes
3answers
5k views
iPhone Tableview Use Cells in Horizontal Scrolling not Vertical
Hi Guys
This is not an uiview orientation question, I want to Have the iphone in Portrait or Landscape, and I want a standard tableview(controller?) that will display cells in a vertical strip down ...
3
votes
1answer
803 views
Handling empty UITableView in UITableViewController
I have a UITableViewController that is populated with some data. If the data comes back empty, obviously the table is empty. What is the appropriate method to use to handle this case and put up ...
3
votes
1answer
791 views
Unable to swipe delete first row of table in iPhone app
I have an iPhone app that utilizes TableView to list tagged items that the user has saved. I have Swipe to Delete enabled for these items yet I'm running into an issue with the very first item in the ...
3
votes
1answer
2k views
Distinguishing between didSelectRowAtIndexPath and accessoryButtonTappedForRowWithIndexPath
I've implemented didSelectRowAtIndexPath and accessoryButtonTappedForRowWithIndexPath never seems to fire. However, didSelectRowAtIndexPath always fires, even when I click the accessory. Shouldn't ...
3
votes
1answer
748 views
Fast Scrolling table cells with images. Is this how it is done?
I'm try to create a fast scrolling list using the creator of Tweetie, Loren Brichter's technique. I believe the idea is to "do your own drawing" instead of using using subviews and images in the ...
3
votes
2answers
3k views
Problem with editing style when inserting a new row at top of UITableView as part of entering Edit mode
I have a UITableView with a single section and 'n' rows (populated from an NSMutableArray, myTableArray). When entering Edit mode, I would like to achieve the following:
setup the "n" rows to have ...
3
votes
2answers
193 views
How to prevent odd scrollbar flash?
I don't think what I am doing is all that unusual, but I'm certainly getting an unusual result.
I have a normal UITableView, and when one of the cells is touched, I push a viewController onto the ...
3
votes
1answer
7k views
Reload model for UITableViewController before [tableview reloadData]
This is my first try into iPhone development and I have some UITableViewControllers which will show the data returned from a webservice.
In my AppDelegate I have setup a timer which is called every ...