[alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
// 可以在这里对textfield进行定制,例如改变背景色
textField.placeholder = [NSString stringWithFormat:@"起投%@元,递增%@元",self.element.beginamount,self.element.increaseamount];
textField.keyboardType = UIKeyboardTypeNumberPad;
}];
/********取值在这里***********/
UITextField *login = alertController.textFields.firstObject;