0

如何获取在字段中选择用户的字段的实际值,

在这种方法中,我只得到了用户选择的索引数,但我需要它的值(字符串)。

(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.

}

谢谢,

4

1 回答 1

0

我遇到了同样的问题,对如何获取 FXForms 中的值感到困惑,然后在阅读了 DynamicForm 类中的评论后,为将来遇到该问题的其他人发布了解决方案

-(void)submitRegistrationForm:(id)sender
{
    NSLog(@"Form Submitted");
    DynamicForm *form=self.formController.form;
    NSDictionary *values=form.valuesByKey;

    NSLog(@"values:- %@",values);

}

ps:我自己是一个子类FXFormViewController

于 2015-04-13T12:01:41.783 回答