Tagged Questions
18
votes
2answers
17k views
How to create NSIndexPath for TableView
I need delete row 1 of a table in a function i have defined. In order to use deleteRowAtIndexPath you must use an IndexPath with a section and row defined. How can I create an indexpath like this?
...
2
votes
1answer
269 views
message sent to deallocated instance issue
I have been debugging the following issue for the past couple hours and can't seem to come up with a good conclusion.
-[NSIndexPath row]: message sent to deallocated instance 0x506cf90
I am ...
2
votes
2answers
966 views
Calling (deleteRowsAtIndexPaths) outside of (commitEditingStyle) in Objective-C for the iPhone
I have a custom UITableViewCell that has two custom UIButton's added to it. On one of these buttons I want to be able to delete the cell row from within myMethod().
The method is called by ...
2
votes
4answers
8k views
UITableView Cell IndexPath
Can anyone tell me how can I get a cell IndexPath?
I was saving the IndexPath in the tableView: cellForRowAtIndexPath: method but this only loads when the cell is viewed and I need to know its index ...
1
vote
3answers
116 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
73 views
Decrease indexPath by one
I'm filling a TableView with CoreData.
Until now I was doing something like this:
NSManagedObject *managedObject = [self.fetchedResultsController objectAtIndexPath:indexPath];
...to ...
1
vote
1answer
129 views
accessory tick on uitableviewcell not showing in some instances
I have two tableviews, one has several tableview cells each cell opens the same subview but initalized with new data..
There are around about 100 - 200 entries into the table and I have a accessory ...
1
vote
1answer
39 views
error when usning UITableViewScrollPositionMiddle:atScrollPosition: causes my tableview to become unscrollable
I am currently trying to get my uitableview to automatically scroll to a selected cell.. I am about halfway there however when I now use this method (below) inside tableView:cellForRowAtIndexPath: and ...
1
vote
2answers
96 views
how to center uitableview selection with indexpath value
I am saving the indexPath selection from a subview and passing it to the parent view with delegates. When I got back to my subview from my main view I pass the indexPath back to it and show the user ...
1
vote
1answer
33 views
how to use UITableViews for multiple datasets
I am currently playing around with a navigational based app. Where I want to allow the user to construct a search query by selecting one of several different uitableview cells when touched leads them ...
1
vote
1answer
119 views
How to get indexPath in a tableview from a button action in a cell?
I have a tableview with two actions in it, for the first on i use the delegate didSelectRowAtIndexPath, for the second one i would like to use an action on a button on my cell to do something else. My ...
1
vote
3answers
346 views
Return NSIndexPath from custom cell ? (UITableView)
I need to get the NSIndexPath for a custom cell in a UITableView. Here's the problem: I send a NSNotification from my custom cell to my UITableViewController when editingDidBegin gets called from a ...
1
vote
1answer
622 views
How do I get specific values from a NSIndexPath
I have a NSArray with NSIndexPaths inside of it
NSIndexPath *indexPath = [self.tableView indexPathsForSelectedRows];
NSArray *array = indexPath;
for (int i = 0; i < [array count]; i++) {
...
1
vote
2answers
226 views
Getting row number in scrollViewDidEndDecelerating
when i use
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{
NSArray *visibleCells = [my_table visibleCells];
i want to know the number of the row (in my_table) that is visible ...
1
vote
1answer
480 views
UITableView Checklist
I'm making a checklist program using UITableView and I managed to implement everything up to selection and making a checkmark appear. However, when I scroll away from the cells. The checkmark ...
1
vote
3answers
7k views
how can i get a uitableViewCell by indexPath?
how can i get a uitableViewCell by indexPath? like this:
i use the UIActionSheet when i click confirm button i wan to change the cell text
the nowIndex i defin as a property
- ...
1
vote
2answers
216 views
Customize TableviewCell depending on section
How do I customize the background image of a tableViewCell depending on the section, they are in? E.g. in section one, the cells are supposed to have a green .png image as a background image, whereas ...
0
votes
4answers
51 views
If statement not working with indexpath properly
I am woundering if I am doing something wrong with this if statement...
I am compairing two indexPaths, and old one and the current selected one if they are not equal I would like to do something ...
0
votes
1answer
35 views
error with scrollToRowAtIndexPath
I am getting an error when using my application that used tableviews, the error looks like this.
2012-01-19 10:19:51.442 bcode[1176:207] *** Terminating app due to uncaught exception ...
0
votes
1answer
26 views
Can't get table detail to show up
I swear I've looked at a half-dozen tutorials and I can't figure out what I'm doing incorrectly. I have a tableview nested within a UIView via IB, and the table both is formatted and populates ...
0
votes
1answer
41 views
Indexpath in tableview delegate methods having different values
I am trying to take contacts from my addressbook. I am displaying the data on my tableview. For that first I am setting the height of the tableviewcell.
-(CGFloat)tableView:(UITableView *)tableView ...
0
votes
0answers
54 views
NSRangeException causing app to crash on the phone but not the emulator
First of all Im going to show you the error I am getting, then I will try to explain what I am doing to get this error etc
2011-11-02 10:17:57.665 code[1327:707] *** Terminating app due to uncaught ...
0
votes
1answer
61 views
Specific uitableviewcell's in section of uitableview
I have this code for each index of my uitableview
if (indexPath.row == 6){
UIImageView *blog = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"blog.png"]];
[cell ...
0
votes
1answer
100 views
tableView:cellForRowAtIndexPath: not working correctly when testing on iphone
Currently i have a uitableview that the user can scroll through and select a cell. When the cell has been selected I save that indexpath value and when the user comes back to the view with the ...
0
votes
2answers
94 views
Delete Row from UITableView Outside TableView Delegate
I am trying to delete a row from UITableview outside the delegate method. I am calling a method when I click a button inside a table cell and trying to delete the row inside that method.
Here is the ...
0
votes
3answers
31 views
How use summery element for label in cell of table view?
I have label in my custom cell. That cell i have display with a table view. Now i have problem is that when text of label is more wider than cell width then text cross cell width. So how summarize ...
0
votes
2answers
128 views
How show selected row when click on table view?
I have a button. When click on button then open a table view with 100 row. I user select a ny row then appear check mark. And when user click on again then i want to show that selected row when view ...
0
votes
0answers
126 views
tableView:cellForRowAtIndexPath: called with nil indexPath?
I have a rather vanilla UITableView managed by an NSFetchedResultController to display all instances of a given Core Data entity.
When the user deletes an entry in the table view by sliding over it, ...
0
votes
1answer
160 views
didSelectRowAtIndexPath: how to get old indexPath to deselect checkmark?
How to deselect previously selected row in tableView ?? I can't find solution to obtain oldIndexPath
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
...
0
votes
2answers
169 views
insert/create new row in a same section of uitableview
I am stuck in a problem, I have a uitableview with rows let say 5.
If a user selects one row then a new row exactly beneath the tapped row should be created/inserted with an animation (as we have ...
0
votes
1answer
341 views
NSIndexPath and objectAtIndex in didSelectRowAtIndexPath crashes?
I am working on a small iOS project, with a UITableView.
I made a table and put some content in it:
-(void)configureCell:(UITableViewCell *)cell forIndexPath:(NSIndexPath *)indexPath {
NSString ...
0
votes
2answers
194 views
'indexPath' undeclared (first use in this function)
I have the following error. 'indexPath' undeclared (first use in this function).
Code.
didSelectRowAtIndexPath
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath ...
0
votes
2answers
293 views
Updating tableview cells
I'm still really green as Object-C so hopefully I'm able to communicate this well, so hopefully with my code examples I can explain this.
What I have is a table with four rows. Each row has a label ...
0
votes
1answer
324 views
how to get a handle on the UITableViewCell given NSIndexPath* iOS
I have the indexPath of type NSIndexPath*,a reference to the tableView, I want to use these to get a handle on the corresponding cell.How dp I do this?
0
votes
2answers
292 views
How to bind indexPath.row to primary key in iphone sqlite
I can successfully update my sqlite database however I would like the primary key to correspond to the row selected in tableview. The reason I'm struggling is because I need to get the indexpath from ...
0
votes
1answer
279 views
Deleting all table rows in a section
For my iPad project I need to be able to reload table rows.
This is how it should works, depend on some "id" selected from a popupview, i need to be able to reload table rows, table rows are dynamics ...
0
votes
1answer
363 views
Accessing indexPath from custom UITableViewCell
I'm trying to create a UITableView to allow the user to enter data, similar to a lot of the settings UITableViews, with some textfields and callouts to other tableviews for checkboxes. For such a ...
0
votes
2answers
775 views
didSelectRowAtIndexPath returns wrong IndexPath
I have encountered a really puzzling bug. The first row of my UITableView returns 1 and the second one returns 0 in the indexPath! How is that even possible?
In my `-(void)viewDidLoad` everything is ...
0
votes
1answer
130 views
Crash when using indexPath.row in a modalViewController
I've a problem with indexPath.row, when I try to access this variable my app crashes and I get no errors on the console :(
the code is this:
- (void)tableView:(UITableView *)tableView ...
0
votes
1answer
473 views
Dynamic Sections UITableView with Unknown cells
Hey,
I'm basically trying to retrieve data from SQlite db and populate a tableView from it.
The sql-data-retrieval method creates two arrays. "dataArray" and "SectionArray".
DataArray is filled ...
0
votes
2answers
2k views
cellForRowAtIndexPath: crashes when trying to access arrays objectAtIndex:indexPath.row
Recently edited to adapt to some answers and to improve readability
I am loading in data to a UITableView, from a custom UITableViewCell (own class and nib). It works great, until I try to access the ...
0
votes
2answers
642 views
iPhone UITableView populating variable rows sections from flat array
I thought that would be very common and easy iPhone App. In the main app I connect to database, retrieve values from database (NSDate converted to NSString)n and put into single array. Then in one of ...
0
votes
2answers
4k views
Get a tableview insertRowsAtIndexPaths to accept indexOfObject?
I have a code snippet that looks like this:
[tableView beginUpdates];
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft];
[tableView ...
0
votes
1answer
239 views
Is it possible to get array of all index paths for the cells in a UITableView?
Is there a simple way to get array of all index paths for the cells in a UITableView?