如何获取在字段中选择用户的字段的实际值,
在这种方法中,我只得到了用户选择的索引数,但我需要它的值(字符串)。
(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.
}
谢谢,