The UITableViewController class is a iOS UIViewController subclass that creates a controller object that manages a table view.

learn more… | top users | synonyms

2
votes
2answers
41 views

what happens between willSelectRowAtIndexPath and prepareForSegue? Need debugging advice

Somewhere in between these two calls, i get EXC_BAD_ACCESS (Code=2, address=0xa). The common explanation for bad access is accessing a released object - I've compiled with NSZombies enabled and that ...
0
votes
2answers
35 views

UITableView (IOS) trying to delete but never get the delete button to show up

I know there's a lot of questions like this one out there, but I've followed a couple of them and none of them could lead me to the answer. Probably it's just something stupid and obvious I'm missing ...
0
votes
1answer
22 views

iCarousel performance issue with UITableView (iPad master-detail UI)

I am currently using a master-detail iPad UI: inside a UISplitViewController I have the left (master) side contain a UITableViewController, and the right (detail) side contains an iCarousel. See ...
0
votes
1answer
27 views

iOS - Push Segue not working even with NavController

I'm trying to set up a basic "Newsfeed" function for an iOS app, with headlines in a TableViewController segueing into a simple ViewController to display the text of the selected story. I'm using ...
0
votes
1answer
48 views

TableView Delegate Messages Not Being Called

SOLVED: Not really a solution, but I just used a .xib rather than trying to use the storyboard thing. Whatever I was trying to do with the storyboard was somehow messing up the TableView delegate ...
0
votes
1answer
37 views

UIView inside UITableView does not show in runtime

I have an UITableViewController with UI in a storyboard file. I have drag-and-dropped an UIView on top of the UITableView. It looks great in Interface Builder, but doesn't show at all in runtime: ...
-4
votes
1answer
35 views

IOS - Extracting data from sqlite without uitableview [closed]

I base my code in a tutorial of sqlite in IOS, my problem is that I not need use UITableView, I need to access directy to the dates, and put it in a buttons to create a question game. ...
1
vote
1answer
9 views

iOS, Delay Display in UITableView with insertRowsAtIndexPaths:withRowAnimation:

I have a custom NSObject class, doing some FTP work (display, transfer...). This FTP class has a downloadFiles: method, which is launch inside a NSOperationQueue. And I would like that method to ...
0
votes
1answer
66 views

navigating from detail view controller to table view controller

i am facing a situation that i am loading data correctly to a uitableviewcontroller. also i am loading data correctly to the detail view controller. what i am using: ...
0
votes
1answer
12 views

IBOutlets deallocated after modal view controller

I have a couple of IBOutlets in my ViewController class, declared like this: @property (nonatomic, retain) IBOutlet UILabel* labelHostStatus; @property (nonatomic, retain) IBOutlet UIButton* ...
0
votes
1answer
16 views

Segue from NavigationBarItem to UINavigationViewController

I have a tutorial and at the end of the tutorial I want to push from a UIViewController to a UINavigationViewController. I need the UINavigationViewController because I'm using ECSlidingViewController ...
0
votes
1answer
25 views

Segue from selected uitableview to uiwebview

I am using storyboards and the latest version of Xcode. I have seen some of the other related questions on this but nothing is specific enough for me. Perhaps best would be a tutorial if anyone knows ...
0
votes
4answers
91 views

-[__NSCFDictionary objectAtIndex:]: unrecognized selector sent to instance 0x8943940 while parsing JSON Page to UITableView

I have been through many links and fortunately I got many similar links but nothing worked Out. my array is appearing like this in Output, using NSLog().. products = ( { cid ...
0
votes
0answers
9 views

Add a custom UI control into static UITableViewController with static Cell

I want to add a custom control (this name iCombobox) UITableViewController with static cell (I have 4 previous cells with Apple controls) Could you please show me how? Thanks. I am using storyboard ...
0
votes
1answer
29 views

static tableview - cells initially off screen not updating

I call the following method in viewWillAppear() in my tableview controller to load up my static cells with the data I want to display. Sections 1 & 2 display correctly. Section 3 doesn't load at ...
0
votes
1answer
29 views

Reload UITableView data every time context changes?

I have a UITableViewController that's a subclass of CoreDataTableViewController (it's the Stanford class). That implements a fetchedResultsController. Now, in my viewWillAppear, I have this: - ...
0
votes
3answers
33 views

Implementing another table view in a UITableViewController ios

I need to add a new table view to my UITableViewController which will includes a different data and design. the above prototype cells is the new table view I've added in storyboard, and the main ...
0
votes
3answers
32 views

UITableView: Number of elements in footer in the last section [duplicate]

I would like to know how can I make appear in the last section of a UITableView the number of elements in the table as in iPhone Contacts App: Thank you
0
votes
1answer
42 views

How to recreate the UITableViewController's initializing behavior?

I am creating my own base class that will act as a UITableViewController replacement (let's call it IRTableViewController). Thus, I am subclassing UIViewController and I want to have the following ...
0
votes
1answer
17 views

Get a pointer to controller on stack

I have a left view controller (sliding menu controller) in use for example called LeftMenuTableViewController. When a user logs out a modal view controller is displayed but the tableview controller ...
0
votes
1answer
27 views

'NSInternalInconsistencyException' - unable to push uitableviewcontroller on uinavigationcontroller ios 6

I am simply pushing a UITableviewController to navigation stack. Code works fine in both iOS 4.3 and 5 but crashes in iOS 6. Exception is: Terminating app due to uncaught exception ...
0
votes
2answers
46 views

UITableViewStyleGrouped is not working

OptionsVC.h @interface OptionsVC : UITableViewController . . . OtherController.m OptionsVC *options = [[OptionsVC alloc]initWithStyle:UITableViewStyleGrouped]; I dont know ...
1
vote
2answers
73 views

Hovering UITableViewController over a UIViewController on iPhone not displaying cell content (e.g. FB notification view)

I am trying to create a hovering UITableViewController over a UIViewController. I have managed to open the TableView over the ViewController. (Picture) When first loading the view the data is loaded ...
0
votes
2answers
32 views

Can't Change Accessory Type From didSelectRowAtIndexPath?

Before I post the question itself, I need to state this is a jailbreak app. This is why I'm writing in "bizarre" folders in the filesystem. Let's continue. Here is my cellForRowAtIndexPath method: ...
0
votes
1answer
28 views

Setting up a menu in UITableView showing the current item

I am using a slide in menu style which loads a UITableView. - ECSlidingViewController I have about 7 cells in a table view setup as follows: static NSString *CellIdentifier = @"Cell"; ...
0
votes
0answers
14 views

Two uitable into one uiview

So this is related to this question I asked not too long ago and I'm trying to figure out if the solution I came up with is feasible, I would try it but I'm not really sure how to start Load a ...
0
votes
0answers
23 views

IOS: Connect my CustomTableController to UITableViewController create in storyboard

As title, I have created a new class type UITableViewController name TableViewControllr and added in custom class storyboard. But when i run my projetc in simulator I see an empty controller. if i ...
0
votes
2answers
30 views

Touch Event on UTableViewController

There I need to add touch event on UTableViewController Like there will be an image w.r.t. to each UICell, so when user touches any cell corresponding image will be visible to user, Image will only ...
0
votes
2answers
26 views
0
votes
1answer
144 views

tableView:cellForRowAtIndexPath: returning null

In my project, I have a UITableView with a custom cell, SearchCell. Cell however is returned as a null value, and will crash the app. If I choose to catch the null exception and alloc/init a new cell, ...
0
votes
0answers
12 views

TableView inside a Cell of a parent TableView

I thought I have a solution, and thanks to all the comments here. I am a few steps forward but: I want to have a TableView inside a Cell of a parent TableView. 1st Try: Putting a UIView and inside ...
0
votes
0answers
47 views

Data assigned to ViewController is null just after push?

I can't figure out why the data I'm assigning to a view controller just before pushing it is becoming null just after the push. I'm using Core Data for storage. The Project object is an ...
0
votes
4answers
53 views

Vertical UITableView Section Header

I want to implement a UITableView with vertical header something like the following image as you can see the Test word will be the section header , can I create a custom header like that.
0
votes
3answers
46 views

Is it possible to have a UITableViewController hide its cells until there's content, and in the meantime display a “no content” message? [closed]

Similar to how Apple did it in their music app: I want to have a UITableViewController, but how would I best go about only showing the cells if there's content, otherwise show that "no content" ...
1
vote
3answers
69 views

UITableView performance issues when adding UIViews to cell.contentView

I am experiencing performance problems when using some subviews on my UITableViewCells. After I keep scrolling it eventually starts getting very slow. First step I am doing is creating a common ...
0
votes
2answers
32 views

Multithreaded TableViewController

I recently got a crash in UITableViewController's tableView:cellForRowAtIndexPath: -[__NSArrayM objectAtIndex:]: index 10 beyond bounds for empty array for the code: Message* res = [messages ...
0
votes
3answers
35 views

UITableView and UIView in one UIViewController

I want to develop an iPad application. I have an UIViewController that contain UITableView and UIView, and in my file .xib I have these two controllers. In my ViewController.h: I have UITableView ...
2
votes
5answers
43 views

how to get the row number in uitable view,it contains certtain number of sections

all i need to do is how to get the particular section number and its row number in an uitableview...mainly the table contains 20 number of sections. Thanks in advance
1
vote
3answers
28 views

How do I notify the UITableViewController of events from a UITableViewCell subclass?

I have a gesture recognizer on each of the table view cells, and when they swipe one I want my delegate to notify the table view (or if there's a better way without delegates, that) so it can be ...
0
votes
4answers
82 views

how to set table cell height dynamically depending on text label length?

I am trying to learn Obj-C and iOS programming, but am still very new. I decided to try and make a simple Reddit client application. I am trying to display the front page posts within a UITableView, ...
0
votes
1answer
63 views

How can I add a table view controller to an existing storyboard view controller?

I'm creating a landscape iPad app for iOS 5.1 that should have two table views embedded into a view controller of my storyboard. What I would like to be able to do, is drag a table view controller ...
0
votes
2answers
62 views

Uncheck row automatically when table scrolled

When I scroll UITableView my tableview cells automatically uncheck. But when I press done button it give me selected rows I can't understand why is this happening. My Tableview code is as below : ...
0
votes
1answer
49 views

reloading a uitableview starts at the 2nd row (or not at the first row)

Uitableview problem again. Whenever I reload my data, the tableview would reload but it seems like the data will not start at the first row. Please refer to the image below. I tried the following ...
1
vote
1answer
28 views

UITableViewCellAccessory Multiple sections

I am trying to add a checkmark to a UITableViewCell when a user selects it. I have the following code: - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { ...
0
votes
1answer
28 views

Generate new UITableViewController and show it

I'm working with tableviews showing a hierarchy data structure. I take the first node and show the sons in the tableview and repeat it until the end of the tree. I'm doing it in this way: - ...
1
vote
2answers
48 views

How we know the Scroll to top ( push to top) in table view in iPhone

I have a table view in my iPhone app in that i want to implement two actions when user scrolls the table to top. When the user pulls down the table view. For Ex: If(UserScrollThe ...
0
votes
2answers
48 views

Insert items to a tableView when a button is clicked in iOS

I have been practicing with tableViews but I cannot figure out how to insert new items when a button is clicked. This is what I have: BIDViewController.h: #import <UIKit/UIKit.h> @interface ...
0
votes
1answer
50 views

UITableView header shows up behind the table

I get this strange thing when I want to create an header to an UITableView: My code creating the header looks like this: -(UIView *)tableView:(UITableView *)tv ...
0
votes
1answer
44 views

How to make Expandable UITableViewCell [duplicate]

I have two arrays, first is for person's name and second is person's details with different sizes. And I want to show this info in UITableViewCell. When the view appears it shows list of persons and ...
0
votes
3answers
44 views

Update UIButton title from other view…?

I am developing an iPad app. At some stage I need to use dropdown type functionality. So, I'm using UIPopoverView for the same. When IBAction fire on tap of particular UIButton, I adjust popoverview ...

1 2 3 4 5 37