Is this the correct way to convert a NSString to a UIImage?
I tried this code:
NSString *localPng = [[NSBundle mainBundle] pathForResource:@"resume-1"
ofType:@"png"];
NSData* data=[localPng dataUsingEncoding:NSUTF8StringEncoding];
NSLog(@"datas %@",data);
UIImage* image = [[UIImage alloc] init];
image = [UIImage imageWithData:data];
NSLog(@"-------- %@",image);
[self uploadScoreToFaceBook:[NSString stringWithFormat:@"Medina Score %d",score] uploadImage:image ];
But I am getting a null value in image.