I am sitting on this problem for hours and I am blind now. ;-)

I have this code here:

- (id) initWithImage:(UIImageView*)imageView andPath: (NSString*) path{

   [super init];
   drawImage = imageView;
   imageFilePath = [NSString stringWithString: path];
   NSLog(@"fath: %@", imageFilePath);
   return self;
}

    NSData *imageData = [NSData dataWithData:UIImagePNGRepresentation(drawImage.image)];   
    NSString *docsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
    NSString *path = [docsDirectory stringByAppendingPathComponent:@"img.data"];
    NSLog(@"path: %@", path);
    [imageData writeToFile:path atomically:YES];

This code works but when i change
[imageData writeToFile:path atomically:YES];
to
[imageData writeToFile:imageFilePath atomically:YES];
the app crashes.
But the strings look completely the same:

2011-06-01 10:38:10.178 L3T[3756:207] fath: /Users/max/Library/Application Support/iPhone Simulator/4.3/Applications/A73945CF-9FD0-46E9-A16B-9C0EFC924B0F/Documents/img.data
2011-06-01 10:38:11.864 L3T[3756:207] path: /Users/max/Library/Application Support/iPhone Simulator/4.3/Applications/A73945CF-9FD0-46E9-A16B-9C0EFC924B0F/Documents/img.data

I just don't understand it!

link|improve this question

Where's the definition of imageFilePath? Is it a member varialble in your class? When is imageFilePath alloc'd and init'd? – Frank Schmitt Jun 1 '11 at 8:48
feedback

1 Answer

up vote 3 down vote accepted

The code imageFilePath = [NSString stringWithString: path]; gives you an object that you do not own, hence you cannot depend on it being available later in your code. Change this to:

imageFilePath = [[NSString alloc] initWithString: path];

and you should be fine.

link|improve this answer
Right. [NSString stringWithString: path]; returns an autorelease object. So when you try to access imageFilePath, it has already been (auto) released. – user745098 Jun 1 '11 at 9:09
1  
@prat +stringWithString: does not necessarily return an autoreleased object. It’s more accurate to state that it returns an object that’s not owned by the caller. – Bavarious Jun 1 '11 at 9:12
Thanks Guys! Made my day ;-) – madmax Jun 1 '11 at 9:24
feedback

Your Answer

 
or
required, but never shown

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