Я сгенерировал TableView со списком элементов, которые я выбираю из API.В результате он показывает мне TableView с UILabel и UITextView.Код работает и дает мне желаемые результаты:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell:FormCell = self.tableView.dequeueReusableCell(withIdentifier: "cell") as! FormCell
cell.formLabel.text = (self.fetchedData[indexPath.section] as! String)
// id is available = (self.fetchedDataID[indexPath.section] as! String)
return cell
}
class FormCell: UITableViewCell {
@IBOutlet weak var formLabel: UILabel!
@IBOutlet var formAnswer: UITextView!
}
Но теперь я хочу отправить "ответы" на все данные формы ответа в UITextViews.Как этого добиться?
Результат, который я хочу POST для API, выглядит примерно так:
let params = [
"id-of-": "theValueOfTheFormAnswer", // every Value of each UITextView
] as [String : Any]
let requestURL = "/post-url"
let request = Alamofire.request(requestURL, method: .post, parameters: params, encoding: JSONEncoding.default, headers: nil)