Tagged Questions
The nsindexpath tag has no wiki summary.
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?
...
5
votes
1answer
655 views
isEqual doesn't always work for NSIndexPath? What can I use in its place?
I've got some code that relies on comparing two NSIndexPaths and executing different code based on their equality or lack thereof (using -isEqual). Most of the time it works properly, but sometimes it ...
3
votes
2answers
2k views
NSIndexPath warnings in Obj-C
I am getting a warning while creating the NSIndexPath,
NSInteger arr[] = {0,3};
[NSIndexPath indexPathWithIndexes:arr length:2]
warning: pointer targets in passing argument 1 of ...
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
241 views
Objective-C: Instance Variable in Category
I am just asking whether it was possible to add an instance variable via a category. My special problem is, that I need to add an NSIndexPath property to an ASIHTTPRequest object but I don't wanna ...
2
votes
2answers
969 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
74 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
88 views
indexPath.row is always 0
I'm working on populating the table view with an array of dictionaries. The contents of the arrays and the dictionaries are parsed without problems. However, the table is populated with [array count] ...
1
vote
0answers
51 views
iOS5: How to prevent exception for rectForRowAtIndexPath method
Exception:
request for rect at invalid index path
Code:
CGRect rect = [tableView rectForRowAtIndexPath:[NSIndexPath indexPathForRow:i inSection:0]];
Fix:
if ([tableView ...
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
64 views
difference between indexPath and indexPath.row (iphone)
i am confused about indexPath and indexPath.row, does each cell of a tableView correspond to an indexPath? so why do we look for the "row" of this indexPath? i checked the doc but i think it confuses ...
1
vote
3answers
989 views
Convert NSInteger to NSIndexpath
Basically I am storing an index of an array in a NSInteger. I now need it as an NSIndexpath, I'm struggling to see and find a way to convert my NSInteger to NSIndexpath so I can reuse it.
Thanks dan
...
1
vote
1answer
624 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
4answers
419 views
NSIndexPath getIndexes method…how?
Am confused with the use of this method and the documentation that lists it as a (void) method.
"on return the index path's indexes"
where does it return anything too?
Should it not be:
- ...
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 ...
1
vote
3answers
516 views
How to restore the user-location in a drill down UITableViewController structure?
I have a CoreData model that contains Levels which can again contain childLevels.
I represent each level with a UITableViewController listing all childLevels. When a user taps a row a new ...
0
votes
1answer
11 views
Given model object, how to find index path in NSTreeController?
Given model objects that NSTreeController represents, how do you find their index paths in the tree and subsequently select them? This seems to be a blindingly obvious problem, but I can't seem to ...
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
40 views
IndexPath of a cell when Pinches?
I am finding when tableview is pinched with UIPinchGestureRecognizer declaring at cellForRowAtIndexPath. Now want to find indexPath of a particular cell that was pinched. so i wrote the like this...
...
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
1answer
79 views
How to convert NSIndexPath to NSInteger?
I have searched and found a previous answer for this question here. The problem is that the answer marked as a solution does not work. Inside my tableView:didSelectRowAtIndexPath: method, I have ...
0
votes
3answers
76 views
Access objects in custom UITableViewCells with same tag?
In my app, I use custom UITableViewCells loaded from a XIB. Each cell contains 4 objects, like a UIImageView, UILabel, UITextField, etc...
I set the tag of each object in my cellforrowatindexpath so ...
0
votes
3answers
79 views
nsindexpath access to row to section property causes SIGABRT?
Targeting iOS 5.0 I see SIGABRT when I try to access row or section properties of NSIndexPath object in the following code:
NSIndexPath* path = [[NSIndexPath alloc] initWithIndex:0];
int row = ...
0
votes
4answers
64 views
Get indexPath.row in IBAction?
In my app there is a table view. When a row in the table view is selected a UIView appears and shows information.
The row title comes from a plist file with strings in it.
The plist file also ...
0
votes
2answers
77 views
NSIndexPath object shows as NSArray object?
I am developing one application in that I have declared iVar as NSIndexPath object,but it shows as NSArray object in didSelectRowAtIndexPath. How it shows like that, what is the mistake from my side.
...
0
votes
1answer
68 views
iPhone4 Core Data how to insert a new object with section number?
I'm trying to insert new objects into my core data structure and have them know which section they belong to.
Here's my insert method, I need to add a certain section to the new record.
...
0
votes
1answer
65 views
Checking and unchecking UITableViewCells with a click of a UIToolBarButton
How can you put a checkmark beside all the cells and remove the checkmark with a click of a UIToolBarButton? Is this possible?
I have tried to iterate through the number of cells loading in the ...
0
votes
1answer
63 views
How to reset the tableview cells accessorytype to none on a click of a button?
I am trying to code a reset button, so that when I click on that button all the tableview cells' accessory type get set to none.
I have a clear concept of how to do it, but I am pretty new to iPhone ...
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
0answers
30 views
I want to change the image of a button which indexpath is being changing everytime whwn i click on it
I am using
BOOL SCP = NO;
if ( [dict valueForKey:@"subcat"] != NULL) {
if ([[[dict valueForKey:@"subcat"] allKeys] count]> 0) {
SCP = YES;
}
}
and
UIButton *n = ...
0
votes
1answer
59 views
passing IndexPath to subview
Hi I am trying to pass an indexvalue from my parent view to my subview like this
//main.m
SubViewController *subViewController = [[SubViewController alloc] init];
...
0
votes
1answer
51 views
Passing IndexPath between views
I am trying to pass the indexpath of my subview over to my main view. I am doing this through delegates and protocols that I have alread set up, I have just slightly edited the method I call to accept ...
0
votes
0answers
103 views
Sorted tableview, how to find the index of my mutablearray?
i create a tableview from a mutablearray, then i sorted it and make section... it work but know i want to delete a row, how to fin the original index of my mutablearray ? It is of course different of ...
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 ...