The NSIndexPath class represents the path to a specific node in a tree of nested array collections in Objective-C. This path is known as an index path.

learn more… | top users | synonyms

0
votes
2answers
71 views

How to retrive data when app is quit in objective C

I have an the app when notification is fired i get a notification bar when the app is in background ,when i tap on that bar it navigates into tableview of the notification set . When i quit the app ...
0
votes
0answers
19 views

iOS6 XCode4.6.2 Passing Row Number via a Segue

If I pass data via a Seque to another View Controller, e.g. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { if ([segue.identifier isEqualToString:@"mySequeIdentifier"]) { ...
0
votes
0answers
16 views

UICollectionView cell insertion assertion failure

I try to insert an item into an UICollectionView. The view got only one section without header, footer or decoration views. My source is a one dimensional array: NSMustableArray *images = ...
0
votes
1answer
58 views

NSRangeException in TableView with Sections [indexPath Row] goes out of range

Here is the error printed out to the console: *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayI objectAtIndex:]: index 2 beyond bounds [0 .. 1]' *** First ...
0
votes
2answers
79 views

How to add multiple NSIndexPath into NSMutableArray

I am trying to add nsindexpath into an array .. i am able to add only one indexpath .if i try to add another indexpath into array ..the debugger shows only the newest indexpath . for (int i = 0 ; ...
0
votes
3answers
62 views

IndexPathForCell and IndexPathForRowAtPoint crash

I have UITableViewController with static grouped cells. In a particular view, I want to remove some of the cells. If I just hide them, it leaves an empty space, so I want to set the cell's rowHeight ...
0
votes
1answer
22 views

Set UITableViewCells to different UITableViews in one ViewController

I build a Viewcontroller with a TableView for iPhone. Now i try to generate the same content but sorted in a kind of grid. It should be 3 x 3. I generated quads with a meassure of 220px x 220px and ...
1
vote
0answers
88 views

How can I get the indexPath of an UIScrollView?

I have a UITableViewCell with a UIScrollView: cellScroll = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 43)]; cellScroll.contentSize = CGSizeMake(960, 43); cellScroll.contentOffset = ...
0
votes
3answers
65 views

UITableViewController is not updating content is I apply manual sorting

using a UITableViewController, where I am displaying some products which are sorted based on make year. Whenever user taps in a row (each row represents a single product) a new view gets displayed to ...
0
votes
4answers
128 views

IOS - passing parameters in self action:@selector

I am a new bie to objective-C & IOS apps. Am trying to add a NSIndexpath as parameter to a method through self action:@selector(showDetailedImage)]; Is it possible to add an extra ...
1
vote
1answer
48 views

Sorting an array of NSIndexPaths

I have an NSMutableArray that contains NSIndexPath objects, and I'd like to sort them by their row, in ascending order. What's the shortest/simplest way to do it? This is what I've tried: ...
0
votes
3answers
282 views

Index path for Multiple Dynamic prototype cells

Gents, I need some help here. It's almost like I know what I'm trying to do but I've been unable to get it work when coding it out. The scenario is I have a view controller with a table view in it. ...
0
votes
0answers
10 views

IndexPath into my UIWebView

I have one application and two platforms (Iphone / IPad) displaying articles. The Iphone app display a table view and an IndexPath working properly. The Ipad app display the same content but through ...
0
votes
2answers
135 views

How can I add to NSMutableDictionary key NSIndexPath and value BOOL? [duplicate]

Possible Duplicate: Objective-C dictionary inserting a BOOL I need to add key-value pair NSIndexPath -> BOOL to NSMutableDictionary.How can I do this? It's really a problem for me. I can't ...
-2
votes
2answers
61 views

using indexPath.row within prepareForSeque method

how can i use indexpath.row within the following method prepareForSeqye. I can use indexPath.row in the methods provided in the tableview template but cant use it within this method. How can i get ...
0
votes
1answer
152 views

Getting a uicollectionview to start on the second cell

I have have a line based collection view, each cell takes up the whole screen. How do I get the collectionview to start on the second cell ? I am a noob to both collectionviews and iOS. [ 0 ] | [ 1 ] ...
1
vote
3answers
77 views

Open a detailViewController after use of UISearchBar

I have a UISearchBar to search some data in a tableView and then, after searching, selecting a row to open a detailViewController . To do this it is necessary that the lines keep the index path and do ...
0
votes
1answer
68 views

Cache returning wrong objectForKey with NSIndexPath as key

In my cellForRowAtIndexPath method, I have this code: if ([self.cellImageCache objectForKey:indexPath]) { UIImage *image = [self.cellImageCache objectForKey:indexPath]; ...
0
votes
3answers
762 views

how to access from UICollectionViewCell the indexPath of the Cell in UICollectionView

i want to animate the UICollectionViewCell when action is called. i have done UICollectionViewCell in Interface Builder, the UICollectionView also. Now i want to get the correct indexPath at my ...
0
votes
1answer
84 views

NSIndexPath associated with UITableView

I have a table view on my master view, and a textField on my detail view. The app is simple. Add a table view cell with some info. Then if you press the cell, it pushes the detail view and shows the ...
0
votes
0answers
93 views

Data type for indexPath.row

Here's my code NSInteger selectedRow = selectedStationPath.row; UITableViewCell *cellz = [tabView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:selectedRow inSection:0]]; ...
1
vote
1answer
73 views

how to use indexpath for xml parsing

i am passing data from one view to the other using xml parser.when i click on any row(after the xml is loaded on the view) it should display the entire details accordingly. - (UITableViewCell ...
0
votes
2answers
104 views

how to set a NSIndexPath after it has been created

i created a NSIndexPath using: NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0]; now i want to index thru a UITableView by modifying this path, i can't find any API calls that ...
0
votes
0answers
92 views

UITableView ignoring method call only on iPhone 5

This seems strange, and maybe I don't have the issue fully nailed, but I am perplexed. In my app, I present a UITableView modally in a VC and have created a custom init method to additionally send an ...
0
votes
0answers
205 views

NSIndexPath has no row value. Works flawless in iOs 4.3 but not in 6.0

I'm facing a strange problem with my UITableViewController and working with NSIndexPaths. In my UITableView I've implemented a custom OptionCell that fades in below the clicked cell and fades out ...
0
votes
0answers
150 views

Multiple TableViews: move UITableViewCell content from one table into another

Have a look to the screenshot below. I have created two tableviews with 1 section because the upper tableview needs to stick while the other one is scrollable. What I want to achieve is that when you ...
0
votes
1answer
87 views

iPhone: How to selectively change a UITableviewCell appearance with static other cells

I have good reason to adopt static UITableViewCell design because after long effort I have come up with the table format I want. I have all my tableview rows designed in my storyboard. Now, just for ...
0
votes
1answer
648 views

iPhone: Indexpath.row of UICollectionView

I try to remake the image gallery of iOS. In the detail screen of an image i want to update the title of the navigationbar to like 3 of 19 Is there a way to get the current indexpath.row of the ...
-1
votes
1answer
119 views

storyboard NSIndexPath [closed]

I try use storyboard with table view that segue to controller view that should show me picture. The problem is that the app crush when I press on any "cell". this is the problem code: - (void) ...
0
votes
1answer
226 views

How exactly does the NSIndexPath row property work

I'm reading through the Big Nerd Ranch iOS guide and I have a question about this piece of code here: - (UITableViewCell *)tableView:(UITableView *)tableView ...
1
vote
1answer
201 views

UITableViewCell check/uncheck within one section only

I'm trying to setup my table so that the user can select one item per section. For example: - Section 0 - Row 0 √ - Row 1 - Section 1 - Row 0 - Row 1 √ - Row 2 So in the above ...
4
votes
1answer
1k views

Creating slow scrolling to indexPath in UICollectionView

I'm working on a project where I'm using a UICollectionView to create an 'image ticker' where I'm advertising a series of logos. The collectionView is one item high and twelve items long, and shows ...
0
votes
1answer
300 views

UICollectionView cellForRow Crash

Hello I am having trouble getting a custom object at the index path of the UICollectionView... Below is my code. I am getting the crash [Player firstName:]: unrecognized selector sent to instance ...
2
votes
2answers
907 views

UITableView's indexPathForCell: returns always 0 as indexPath.row

I have a UITableView with custom cells in it. This custom cell looks like a normal cell with Style "Detail Left". But my custom cell has a detail label and a text field, to allow the user to edit the ...
2
votes
2answers
1k views

indexPath Value of UICollectionView

When using a UICollectionView, I am perplexed with getting the indexPath value of the didSelectItemAtIndexPath method. I'm using the following line of code in the didSelectItemAtIndexPath method: ...
0
votes
2answers
124 views

What is the index path of a table view cell that is currently being rearranged (moved) by the user?

When a table view is in editing mode and the user is moving cells around. What is the index path of the cell currently being moved? How are the index paths of the remaining cells affected? (I'm ...
0
votes
1answer
184 views

indexPath.row for whole tableview, not only section?

I have a tableView wich displays content from an array with objects. But the tableview have sections for each date, and I get the same content in all the sections. I guess NSDictionary *object = ...
0
votes
3answers
188 views

how to determine the row with button pressed?

I have my custom uitableviewcell. It has the uibutton, uibutton with action. So how do I know indexPath of the row with pressed uibutton?? Target: uibuttons on each rows has an image. So when user ...
1
vote
5answers
1k views

How to get number of rows in NSIndexPath section

I want to get the number of rows in an NSIndexPath section. For all my searching here & in Apple's docs I can't find how to get this value. Any clues on it? My specific purpose is to use that to ...
0
votes
1answer
39 views

Shift NSIndexPath entities

I read NSIndexPaths all the time for uitableviews etc. But I'm having difficultly manipulating an existing indexpath. I want to take an existing indexpath increment/shift each section while ...
1
vote
1answer
164 views

Get texfields values in dynamic tableview

I have a Dynamic table view wich has 5 prototype cells, inside each cell I have 6 texfields. I´m tagging the texfields but I´m having trouble understanding How can I get the values from all of them in ...
0
votes
1answer
320 views

Incorrect indexPath against UITableView after calling reloadData from textFieldDidEndEditing

So I'm trying to emulate the way in which the standard Apple code works on the contacts app when managing telephone numbers. Specifically here, I'm working on deleting a row from a tableview if its ...
0
votes
1answer
291 views

iOS Dynamic Button tagging in UITableViewCell does not detect correct row in table

I'm experiencing a major problem now as my renewal button does not detect the row that is being selected at all because of the recycling! Tried tagging the button but it doesn't detect the correct ...
0
votes
1answer
369 views

How to reload a single section in a UITableView

Hey I'm having trouble trying to figure this one out. UITableView has a method [tableView reloadSections:(NSIndexSet *) withRowAnimation:(UITableViewRowAnimation)] now according to the Apple docs this ...
0
votes
1answer
97 views

Change NSIndexPath when navigating back to UITableView

SCENARIO (iOS 5) I currently have a UITableView. It has 30 table rows The user decides to click on row 5 A ViewController is pushed. Within this ViewController the user has navigated forward 10 items. ...
0
votes
0answers
171 views

Why indexPathForCell not works?

I have a custom UITableViewCell. In the subclass I want to retrieve the indexPath of the cell. But I get a nil. NSIndexPath *ip = [self.reportViewController.tableView indexPathForCell:self]; The ...
0
votes
1answer
75 views

Multiple index paths

I need to implement two different index paths on my tableview in cellForRow at index path... One with data from my fetched results controller and another for simple text. What is the best way to go ...
0
votes
1answer
78 views

Fetched results in a section crash

I am using core data to fetch an entity. I only want those results to show up in the second section of my tableview and something else show up in another section... My app isnt crashing, but the ...
0
votes
1answer
587 views

Objective-C visibleCells and indexPathsForVisibleRows

How do I read intValue of an array of NSIndexpaths through indexPathsForVisibleRows? By the way, why do visibleCells and indexPathsForVisibleRows not work before if (cell == nil) function? Here is ...
1
vote
2answers
341 views

xocde find table view section row on detail text label

I have an index set up with my table and I am able to return the correct arrays for the textLabel.text according to the section header. My problem is I have an a separate array that i need to return ...

1 2 3 4