Tagged Questions

The required methods of the protocol provide the cells to be displayed by the table-view as well as inform the UITableView object about the number of sections and the number of rows in each section. The data source may implement optional methods to configure various aspects of the table view and to ...

learn more… | top users | synonyms

6
votes
1answer
830 views

Calling numberOfRowsInSection: from heightForRowAtIndexPath

Just found a very strange and unexpected behavior in the UITableView class. I need the last table cell in my section to be a different height from the other cells, so I'm doing basically this: - ...
3
votes
1answer
526 views

Objective-C iPhone - Ordering data within multiple sections of a UITableView dataSource

For the purpose of asking this question about ordering. The following MyObject class returns an instance with random generated category names. I use the following dataSource methods: ...
3
votes
2answers
2k views

UITableView Crashes if Data Source Is Updated During Scrolling

I have an app wherein the datasource for a UITableView updates by a background thread from a remote server every 30 seconds. A crash occurs if the user is scrolling the tableView or if the tableView ...
3
votes
3answers
2k views

UITableView isn't refreshing properly after changing dataSource

I have a UITableView with several datasources. This is because, I need to switch the data with a UISegmentedControl, and if I add them as subviews, I cannot use the statusBar to scroll up, etc. At ...
2
votes
2answers
116 views

Why do I have an empty (but working) table index band in UITableView?

Using MonoTouch to develop my very first iPhone application for a customer, I've overridden the UITableViewDataSource.SectionIndexTitles function to provide a string[] array with what I thought would ...
2
votes
1answer
609 views

UITableViewRowData, numberOfSectionsInTableView

I was trying to understand why numberOfSectionsInTableView is being called multiple times each time I update my data source. From the stack trace in gdb, I see the following #0 -[JobPickerTVC ...
2
votes
3answers
456 views

Difference between UITableViewDelegate and UITableViewDatasource

Anyone tell me the difference between UITableViewDelegate and UITableViewDatasource?
2
votes
1answer
730 views

How to reloadData in class which implements UITableViewDataSource protocol

I have a class which implements UITableViewDelegate protocol and there is another class which handles data i.e. it implements UITableViewDataSource protocol. @interface TableViewClass : ...
2
votes
3answers
1k views

iPhone: UITableView not Displaying New Data After Call to reloadData

My problem is that the cell.textLabel does not display the new data following a reload. I can see the cellForRowAtIndexPath being called so I know the reloadData call goes thru. If I log the rowString ...
2
votes
4answers
932 views

Why shouldn't a UITableViewController manage part of a window in Cocoa Touch?

I have a view that contains a UITableView and a UILabel which works perfectly as far as I can tell. I really don't want to manage the UIView and UITableView with the same controller as the ...
1
vote
1answer
52 views

DetailTextLabel keeps changing in UITableViewCell

I have set up a UITableView with 3 sections that pulls from 3 NSArrays containing the keys for each section. I tried setting up a switch statement to manually set the detailTextLabels and accessory ...
1
vote
2answers
30 views

Cannot find protocol declaration for 'UITableViewDataDelegate'

I'm new to app development and am trying to follow 'Learning iPhone Programming'by Alasdair Allan (O'Reilly, 2010) but xcode isn't agreeing with the book. It's bringing up the error 'Cannot find ...
1
vote
1answer
68 views

Adding data to 2 Tables

I am trying to add 2 UITableView's to my UIViewController. I need to add different data to these tables. This is how i added the 2 tables (this code was added to the ViewDidLoad method) ...
1
vote
3answers
185 views

UITableView indexPath section logic

This is the abridged code for my cellForRowAtIndexPath UITableView delegate method: - (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { ...
1
vote
2answers
355 views

Best way to do paging in UITableView

I'm working on a real estate app. The app query a datafeed server after user fill in a form (min rooms, price and so on) and it gets a json string with specific key/value pairs (property name,property ...
1
vote
6answers
619 views

Obj-C, iOS, How do I sort by value and not key, sortedArrayUsingSelector, currently @selector(compare:)]

I need to sort by value instead of Key, I think.... Heres where I populate my arrarys const char *sql = "select cid, category from Categories ORDER BY category DESC"; sqlite3_stmt *statementTMP; ...
1
vote
1answer
368 views

UITableView without <UITableViewDelegate, UITableViewDataSource> still works!

I've read that whenever you're using a UITableView you should conform your controller class to the <UITableViewDelegate, UITableViewDataSource> protocols (if you're not using the tailormade ...
1
vote
1answer
646 views

Update section footer title in UITableView without reloading

I would like to be able to programmatically update the footer title of a section inside a table view, while I am typing text through a keyboard. The keyboard appears when I click on a cell to make its ...
1
vote
1answer
202 views

custom uitableview cell?

i am using following : cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; so it shows ">" for all cell but i want it should not seen on 1st cell because it is head line for table now ...
1
vote
2answers
510 views

UITableView datasource must return cell… don't understand why cell is nil

I am writing a simple application in the iOS and I am getting the "UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath:" error. I am trying to create some static row ...
1
vote
3answers
143 views

memory leak with UITableViewDataSource data?

Hi i have found a problem with my DataSource of my UITableView. Each time i try to fill the NSMutableArrayData in the method "addDataSection", the whole data-Array is set to the current Names-Array. ...
1
vote
1answer
333 views

interesting UITableView Datasource behavior

So i have this very basic ipad view controller and i was doing some testing with multiple UITableViews in the same view. The issue I was having was when I selected a row, it would throw a ...
1
vote
2answers
455 views

UITableView -reloadSectionIndexTitles not calling data source

I'm trying to implement a UISearchBar within a UITableView, which behaves like the one in the "Artists" tab of the iPod application. I have it hiding the navigation bar, and resizing the search box ...
1
vote
3answers
403 views

UITableView not getting populated

I have a peculiar problem. I created a normal Objective c class called SampleTable. I then extended UITableView instead of NSObject. Then in the initWithFrame constructor i initialized the table. I ...
1
vote
1answer
658 views

how to use UISegmentedControl to change datasource in tableview

how to use UISegmentedControl to change datasource in tableview? with sql tables or read data from arrays thanks
1
vote
2answers
3k views

Refreshing XML data and updating a UITableView

I'm developing an iPhone application which uses a TableView to display XML data. The XML data comes from an external resource and is parsed and put into an object for use as a table dataSource. The ...
0
votes
1answer
20 views

UITableView addcell to bottom in edit mode

I'm trying to make my table add a cell at the bottom of the table for adding cells, my table is on delete mode, so people can delete, but then then i need it to add a cell with insert that will insert ...
0
votes
1answer
55 views

UITableView- deleting last cell in section

This is my code to delete a cell in my UITableView: - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath ...
0
votes
0answers
40 views

switch between datasource at runtime

In my ipad app i use a splitviewcontroller. In the right side of the splitvc i need to display tree UITableView but since i can't use a uitabbarcontroller inside splitvc i use only a tabbar. When ...
0
votes
3answers
64 views

Force UITableView to call cellForRowAtIndexPath: for all cells

I am having some trouble with UITableView's reloadData method. I have found that it only calls cellForRowAtIndexPath if there are new cells being added or taken away. Example: I have five cells, each ...
0
votes
2answers
81 views

UITableView viewForHeaderInSection- autoreleased view crashes app

I have a UIViewController that implements UITableViewDelegate and UITableViewDataSource. I am customizing the section headers using the viewForHeaderInSection method: - (UIView ...
0
votes
0answers
58 views

UIPickerViewDataSource vs UIPickerViewDelegate logic

Why aren't methods like – pickerView:titleForRow:forComponent: part of UIPickerViewDataSource instead of UIPickerViewDelegate as it is currently? After all, the titles are data... This seems very ...
0
votes
1answer
72 views

titleForHeaderInSection not being called when implementing UITableViewDataSource protocol

I am setting a UITableView with sections. The numberOfSectionsInTableView: method is being called properly and is returning the right result (in my case 3) but the titleForHeaderInSection is not being ...
0
votes
2answers
66 views

CellForRowAtIndex method not get invoked

I am fetching some data across web and want to display in tableview .And i fetching this data as soon the view will appear using :-(void)ViewWillAppear:(Bool)animated method. I am performing this ...
0
votes
0answers
87 views

Performance issue displaying UIAlertView from tableView:commitEditingStyle

I am new to iOS development and this forum from which I have learnt a great deal. Thank you. In my app I am displaying a delete confirmation dialog from tableView:commitEditingStyle since I want the ...
0
votes
2answers
137 views

How to replicate iPhone Recent Calls call time labeling

Let's say that my UITableView is fed by an array of X amount of NSDates. How can I sort them so that the UITableView mimicking the Phone app on the iPhone, but in a way so that there is a section in ...
0
votes
0answers
23 views

How do I fetch Sum of Values and UnionOfDistinctObjects for summary

I'd like to create a tableview with the summary of Entity Cashflow. Two variables should be on it. Category and sum of values. I can fetch all the values easily, but then I went on and read Apple's ...
0
votes
1answer
97 views

TitleForHeaderInSection throwing EXC_BAD_ACCESS

I am trying to create a generic UITableView in my iPhone app. I have a UITableView which populates the data using an array via a SELECT query loop. I add the data into my array and populate the array ...
0
votes
2answers
75 views

display the right section of tableview

I have a table view and I'm toggling its dataDource with two UIButtons (like tabs). - (IBAction)dataToggler:(id)sender { int buttonTag = ((UIButton*)sender).tag; if(_firstTab.selected ...
0
votes
1answer
216 views

my UITableView's first item doesn't work

I am having some weird problem with my program!! I have created a nested mutable array, which consists of 4mutable arrays, each containing a string and 4 other array, each again containing a two ...
0
votes
0answers
57 views

Best Practice: Core Data Hierarchy in UITableViewControllers

Today I've got another pretty basic question. Let me first describe the scenario. I have two NSManagedObjectModel classes. Say A and B, where A holds some instances of B. In my app I display all ...
0
votes
2answers
89 views

Change tableview datasource with two UIButtons

having a UITableView and its data source is an NSMutableArray which is actually an parsed XML file; In the same view I have two UIButtons with the same action method, how I'm able to toggle the ...
0
votes
2answers
204 views

UIViewController as datasource and delegate of UITableView without conforming to protocols?

I was reviewing some of my code, and suddenly I realized that a UIViewController which has UITableView and is the datasource and delegate of this UITableView does not declare the protocols ...
0
votes
1answer
106 views

Display entire section header title in index bar of UITableView

I am trying to figure out if there is a simple way to display the entire section header title in the index bar of a table view. At the moment I have just the first letter of the core data attribute ...
0
votes
1answer
346 views

Put UITableView and datasource/delegate in separate class doesn't work (XCode 4.2)

I tried to put the delegate and the datasource of my tableview into a separate class. My problem is that it always crashes with no error. This is why I can't figure out what I'm doing wrong. Maybe ...
0
votes
1answer
78 views

ipad two UITableView with data source linking to each other

Need to display data from a single datasource into two different tables arranged just like columns. Here if first uitableview loads upto row 10 the next uitableview should start from row 11 and also ...
0
votes
0answers
55 views

Why does UITableView call UITableViewCell.highlighted=NO after cellForRowAtIndexPath?

In my UIViewController, I call -[UITableView reloadData] and inside my -[UITableViewDataSource tableView:cellForRowAtIndexPath:] method, I call -[UITableViewCell setHighlighted:] with YES. However, ...
0
votes
1answer
64 views

How to detect the rotation change when coming back to tableView from detailView?

I have a UITableViewController and DetailViewController that pops up when concrete row is selected. The problem is the tableView does not call "didRotateFromInterfaceOrientation" method when rotation ...
0
votes
0answers
28 views

Loading a database and Updating an iPhone App (Table View) when user presses a button

I have tried to look for tutorials or questions related with the above subject but I cant seem to find a decent one for beginners. I know how to build a database with Core Data or SQLite3 and show it ...
0
votes
1answer
32 views

Is there a way to identify the cell selected in the parent uitableview

I am trying to load different sets of data into a single uitableview dependent on which cell was selected in the tableView:didSelectRowAtIndexPath: method of the previous view. What i would like to ...

1 2