How can I get actual value of field which user is selected in field,
In this method I got only number of index which user selected, but I need the value (string) of that.
(void)submitRegistrationForm:(UITableViewCell *)cell
{
//we can lookup the form from the cell if we want, like this:
RegistrationForm *form = cell.field.form;
NSLog(@"Country : %d",form.selectYourCountry);
// How to get country name over here.
}
Thanks,