I have a website, require input username, pass and captcha to login.
Now, I develop an application on iPhone to login that website.
I don't know how to get that captcha and show on iphone. I can get that Captcha in NSData and convert it into NSInputStream. But how can show image from InputStream in iOS?
In Android, I finished application with same function. I use:
Drawable.createFromStream(inputstream, source)
to show Image on Android.
What function in iOS similar to createFromStream?
Should have parameter source, because my captcha is in that source. Thanks.