Where ever I used indexpath values, the app quits in iOS5. Can anyone say the exact reason for it? I red lot of questions & answers related to this. But still in a confusion.

What is the reason behind this?

What are all the changes that we should do to prevent crashing?

Where can I know these type of code-changes for the upcoming iOS versions?

Update:

Here is the crashed code:

MyClass.h

@interface MyClass:UIViewController <......> {
...
NSIndexPath* indexPathOfCell;
...
}

...
...


MyClass.m

....

- (IBAction) someAction: (UIButton *) buttonName {
...
indexPathOfCell = [MyTableView indexPathForCell:swipeCell]; //swipeCell is a UITableViewCell
...
}

...

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
...
[self deleteEntity: indexPathOfCell];
...
}

...
...

- (void)dealloc
{
[indexPathOfCell release];
indexPathOfCell = nil;
...
}
link|improve this question

77% accept rate
Are you working in the latest Xcode? – ThE uSeFuL Jan 10 at 7:25
5  
indexpath works fine in IOS5. The problem is likely due to the way you are using it. Can you provide a small sample of code that demonstrates the error? – Adam Davis Jan 10 at 7:26
+1 @AdamDavis, Post some code where it is crashing – Aadhira Jan 10 at 7:41
@ ThE uSeFuL - I am using Xcode 4.1 – Confused Jan 10 at 8:34
1  
It is because you have not retained the NSIndexPath object. – Aadhira Jan 10 at 8:56
show 1 more comment
feedback

2 Answers

up vote 3 down vote accepted

In the someAction method, you are assigning NSIndexPath object to indexPathOfCell member. But since it is autoreleased, it will not be available in another method. So you are getting the crash. Instead, do as the following, where I suggest you to retain the variable.

- (IBAction) someAction: (UIButton *) buttonName {
  ...
  indexPathOfCell = [[MyTableView indexPathForCell:swipeCell] retain]; //swipeCell is a UITableViewCell
  ...
}
link|improve this answer
Thank you so much.. Can I declare retain property in .h file instead of putting here? – Confused Jan 10 at 9:55
yeah you can do so.. – Aadhira Jan 10 at 10:20
feedback

IN IOS 5 NSIndexPath assignment (=) and equality(==) is not working . I have use self before any NSIndexPath object (My Problem has been Solved)

Example:-  self.myIndexPath

Another way Solving:-

FirstIndexPath = (NSIndexPath*) [SecondIndexPath  copy];

Equality works in same way. Like:

if([self.mSelectedSubUnitIndex isEqual:SecondIndexPath])
{

}
link|improve this answer
This makes absolutely no sense. Of course the equality and assignment operators work in iOS 5.0. They didn't break fundamental parts of the Objective-C language. – Brad Larson Jan 24 at 18:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.