将保存的信息从TableViewController传递到ViewController-Swift编码

时间:2018-10-09 02:58:07

标签: swift uitableview uiviewcontroller viewcontroller

我正在编辑页面上,用户可以在其中编辑他们已经放入的信息。用户在ViewController中输入信息(请参见下面的代码),并将其保存在TableViewController中。当按下TableViewController的编辑按钮时,会将用户带到ViewController,但我需要它已将保存的信息输入到字段中,以便可以对其进行操作和更正。如何从ViewController中获取信息以从TableViewController中获取已保存的信息?

  <table id="datatable-buttons" class="table table-striped table-bordered">

                  <thead>


                   <tr>
                      <th>Supplier Code</th>
                      <th>Address</th>
                      <th>Country</th>
                      <th>Description</th>
                      <th>Telephone Number</th>
                      <th>Fax Number</th>
                      <th>Consolidating Agent</th>
                      <th>Contact Person</th>
                      <th>Actions</th> 
                      <th>Discount 1</th>
                      <th>Discount 2</th>
                      <th>Discount 3</th>
                      <th>Discount 4</th>
                      <th>Discount 5</th>
                      <th>Last Transaction</th>
                      <th>Old Supplier</th>
                    </tr> 
                  </thead>


                  <tbody>
                  <?php if(!empty($fo_supp)): ?>
                  <?php foreach($fo_supp as $supp): ?>

                    <tr>    
                      <td> <?=$supp->supp_code?> </td>
                      <td>   <?=$supp->address." ".$supp->address2?></td>
                      <td><?=$supp->country?></td>
                      <td><?=$supp->description?></td>
                      <td><?=$supp->tel_no?></td>
                      <td><?=$supp->fax_no?></td>
                      <td><?=$supp->contact?></td>
                      <td><?=$supp->cons_agent?></td>


                           <td>$320,800</td>

                      <td><?=$supp->disc1?></td>
                      <td><?=$supp->disc2?></td>
                      <td><?=$supp->disc3?></td>
                      <td><?=$supp->disc4?></td>
                      <td><?=$supp->disc5?></td>

                      <td><?=$supp->last_trans?></td>
                      <td><?=$supp->supp_code2?></td>



                    </tr>




                    <?php endforeach;?>

                    <?php endif; ?>
                  </tbody>
                </table>

0 个答案:

没有答案