Search code examples
iosradio-buttonfeedback

How to do Feedback form in IOS?


I want to put a feedback form in a view in my IOS application.

enter image description here

There will be 2-3 smiley images. Initially they will be in grey color. When you tap one of them, it will be colored, and the rest stays grey. They will work like radio buttons in HTML.

And there will be 5 questions.

So, what is the best way to handle this feedback form in a native IOS application?

Thank you.


Solution

  • In my opinion the best and most simple way would be to do it with an embedded html page. This is great if you already have such a page for the web version.

    Another way would be a custom made form in a xib, with custom buttons, but in order for you to actually receive that feedback, you would need to somehow send the data trough a scripted page (php, asp or whatever you like).

    I've done similar things and I used the second suggestion I gave you but in my case it was different, because that form had to be presented over an existent view with animation and so on. What I would recommend you is the first one, with the web page.