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

learn more… | top users | synonyms

0
votes
3answers
32 views

How can I make a table view controller that has cells smaller than the background?

I'm trying to make a table view controller with cells that have a small margin on all sides, and overlay a background image. The tutorials on Google that I found do not cover making a background for ...
0
votes
1answer
30 views

heightForRowAtIndexPath is never called though delegate is set

I already searched Google the entire day but I just can't figure out a solution for this one. I am trying to implement a table view with custom cells in my iOS App. I'm using custom cells that ...
0
votes
1answer
52 views

Moving table view cells from one view controller to another

I am new to stack overflow and a student currently learning objective-C at university. I am building an APP for the science museum in London and I'm creating an events planner. I have two table ...
0
votes
1answer
28 views

Issue implementing STHorizontalPicker in iOS

I am trying to implement STHorizontalPicker open source code in Table Views.I am using XCode 4.6.2. I have imported Quartz core framework and have implemented this code in the ...
0
votes
1answer
16 views

tableView functions not getting called by iPhone

I have a database application in xcode which populates the rows in a tableview from data collected from the SQLite database. This works 100% perfectly in my simulator, However when i run the ...
0
votes
4answers
37 views

Using uitextviewcontroller to go to another view

So want I want to be able to do is click on a button, have a tableViewController pop up appear and then click on one of the entries to bring me to a new view. I already have the tableView pop up set ...
0
votes
1answer
9 views

Embed Segue with Custom Class

Hi i'm pretty new to IOS app development and I have somewhat of a problem. I created a view controller and I have a table view controller embed as a segue inside a container on the view controller. ...
0
votes
1answer
7 views

UITableView doesn't reload on model change with NSFetchedResultsController

Got a problem logically deleting an object from table view. Idea is to set a flag to an item like "deleted" to 1 if item shouldn't be shown. Loading data predicate shouldn't load such rows. Code with ...
0
votes
1answer
7 views

Date Picker show behind static table view cells

Objective - C iOS Development. Hello all. I have a tableView with static cells in three groups. One of those cells is used to open a date picker object. The date picker opens, but appears behind the ...
-1
votes
2answers
37 views

Static UITableViewCell returns nil on CellForRowAtIndexPath, but only for certain sections

I have defined a table view controller using static cells in a Storyboard scene. The table view itself contains six sections, each of which contains one or two cells. I write data to the cells from ...
0
votes
1answer
23 views

How to show a viewController for each cell created by user?

i am wondering how to make that if user adds a new cell in tableview, and when he select it it goes to a detailview, and if he add other cell, its go to other view and keep on. Summing, it gets a ...
0
votes
1answer
57 views

Label in custom cell is null when populating UITableViewController

I'm using Xamarin.iOS to build an iOS app. I'm using a storyboard and have created a UITableViewController with a grouped table using custom cells. The cell contains a label to which I want to assign ...
0
votes
1answer
28 views

Cannot show cell text in a code only custom UITableViewController

I tried to create a custom UITableViewController in code only (without storyboard). The data has already passed in, and verified through tableview:tableview:cellForRowAtIndexPath function. But it ...
1
vote
1answer
57 views

Table header issue

When I add a UISearchBar to a UITavleView (as the table header), it allows the user to hide that search bar by scrolling it out of the screen, and it also stays that way. How can I do that with a ...
-1
votes
0answers
13 views

How do I change the frame of the indexed UITableView?

I want to change the frame of UITableViewIndex, what should i do? for(UIView *view in [self.tableViewContent subviews]) { if([view respondsToSelector:@selector(setIndexColor: )]) { ...
0
votes
2answers
34 views

scroll table view on selecting a textfield

i have a tableview with a text field on each cell the problem is tableview should scroll up on selecting the text field.here i'm attaching my project can u please let me know what mistake i had made. ...
0
votes
1answer
23 views

How to add a search Icon as section for SearchBar in UITableView using search controller

I am trying to add the image for search (magnifying glass) as the section, to easily go to the search bar. This is the issue I am experiencing: My code to setup the sections is as follows: Note: ...
2
votes
3answers
81 views

Display title from tableview cell in different viewcontroller

I can't seem to figure this very simple thing out. I got a UIViewController with 2 buttons, each button links to a different UITableViewController, when I click on a cell in the UITableViewController ...
2
votes
2answers
51 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
46 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
24 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
33 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
54 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
40 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
38 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
11 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
69 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
13 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
17 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
32 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
109 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
13 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
32 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
37 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
35 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
34 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
18 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
33 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
47 views

UITableViewStyleGrouped is not working

OptionsVC.h @interface OptionsVC : UITableViewController . . . OtherController.m OptionsVC *options = [[OptionsVC alloc]initWithStyle:UITableViewStyleGrouped]; I dont know ...
1
vote
2answers
82 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
35 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
36 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
1answer
26 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
26 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
29 views
0
votes
1answer
186 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
53 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 ...

1 2 3 4 5 37