Tagged Questions
5
votes
1answer
662 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
242 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
975 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
1answer
91 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
3answers
348 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
65 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
1answer
632 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
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
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
1answer
80 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
4answers
67 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
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
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
2answers
99 views
Using indexPath in Table to reference array
I have a large array of data which I am displaying in a UITable. The table is broken into sections alphabetically. When a user selects a cell, I need to figure out where in the array that item is. The ...
0
votes
1answer
162 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
1answer
208 views
How to compare two NSIndexPaths?
I'm looking for a way to test if to index paths are equal, and by equal I mean equal on every level? I tried compare: but it seems not to work, I always get true when compared with NSOrderedSame even ...
0
votes
1answer
143 views
indexpath as parameters
I got an table which is filled with VM's and i have 2 variable of the datatype NSIndexPath called:
selectedindexpath(the row the user clicks on) and
selectedindexpathFortheVMtoTurnOn(so it knows ...
0
votes
1answer
57 views
UITableView problem with NSIndexPath
I got a tableview with guests(VM's) which i can turn on/off/reboot, this works perfectly when i do it on 1 Guest.. but when i try to do in 2+ guests at the same time the table responds very bad and ...
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
473 views
Delete a UILocalnotification at a certain indexpath
I have a bunch of UILocalNotifications but I only want to delete a certain one at a given indexpath, therefor
[[UIApplication sharedApplication] cancelAllLocalNotifications];
wont work out for me. ...
0
votes
1answer
132 views
cellForRowAtIndexPath (need to use one string and one integer values in the indexpath)
Dear all
I am trying to display two different arrays in one tableView.
I declared "years" array as strings and "amount" array as integers.
years amount
e.g: 2012, 2013 .... ...
0
votes
1answer
280 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
2answers
424 views
Can't Get indexPath.row from a array (error indexPath undeclared)?
I declared a NSArray in my .h
@interface DevicePreferencesController : UITableViewController < UIAlertViewDelegate >{
NSArray *plist;
UITextField *deviceName;
}
This array is use to ...
0
votes
2answers
777 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
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?