Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I got a UIImage object with no name. (but when I save UIImage to my photo library it gets a name like IMG_00000.jpg)

I just don't know how to use this name for request parameter. (or whatever name it is...)

That should be like,

`[request addData:imageData withFileName:@"%@.jpg", self.IDON'TGETIT]`

what can I use for name of this UIImage?

How can I make it? (property? is there protocol or something?)

share|improve this question

1 Answer

up vote 0 down vote accepted

try:

NSData *imageData = UIImagePNGRepresentation(yourUIImage);
[request setData:imageData withFileName:@"myphoto.jpg" andContentType:@"image/jpeg" forKey:@"file"];
share|improve this answer
no, unique id? just like that, myPhoto? – Ghostino Doggio Apr 14 '12 at 15:05
you can enter any name. You already loaded the image into the UIImage from your file. The first line in the code above makes it a datarepresentation of the image. You then upload the data and set the name arbitrarly in the withFileName parameter. – TompaLompa Apr 15 '12 at 8:49
Thanks, I got it. But I was hoping to that "anyname.jpg" parameter was something automatically generating IDs(or something like that). – Ghostino Doggio Apr 16 '12 at 2:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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