How to call textField that is a inside of UITableViewCell (swift)
问题 I have a UITextField that is inside of UITableViewCell : func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! TextFieldTableViewCell let textField: UITextField = cell.textField let detail = self.detailItem textField.text = detail!.valueForKey("name")!.description + detail!.valueForKey("number")!.description print() return cell } How can pass that