
How to get images from web services in iPhone application?

to get images from web service xml?
For Uploading
NSString *encodedString=[self encode:(const uint8_t*)_secretData.bytes length:_secretData.length];
For retrieving the Data
NSData *data=[Base64 decode:your_string];
Perform operation like
UIButton *mImage = [UIButton buttonWithType:UIButtonTypeCustom]; [mImage setBackgroundImage:[UIImage imageWithData:data] forState:UIControlStateNormal];
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.