I was wondering if the following scenario is possible.
I have a UITableViewController class which contains ten rows displaying some data. Now, I want to show the first five rows in one tableview and the last five in another. Since I don't want to fetch the data again I was hoping to create an instance of my original table class and call its cellForRowAtIndexPath:(NSIndexPath*)indexPath to return the table cells and add it to the other two table views. Is it possible to call a delegate method through an instance? If so, how can I create an NSIndexPath object pointing to a particular row in any section of the table...
|
|
|||
|
|
|
Thanks for the replies. I tried calling the
Also the application crashes with the message
Had initialized NSIndexPath as Andrei described. Guess its just not possible to call the function. |
|||||||
|
|
If you don't want to fetch again, why don't you just add your fetch results to an array? This would have the advantage that populating your tableview would not require "live fetching" - fetching data as you need it may in some cases make scrolling a tableview slow or stuttering may occur. However, you could also try to add your tableviewcells to one or more arrays to keep references to them while you pupulate your tableview for the first time. |
|||||
|
|
I don't think you need anything that elaborate. |
|||
|
|
|
My guess is that using the same UITableViewCell in 2 or more tables would not work. Plus, you'd have the extra ability to customize the appearance of those tables independently while sharing the same content. To answer your last question, you can create a NSIndexPath to point to any cell. The first index is the sectio, and the second index is the row in that section. For example, to point to section 2, cell 5 you can write something like this:
|
|||
|
|
|
Remember that
Doing so should return the cell at |
||||
|
|