November 2018
Intermediate to advanced
404 pages
10h 16m
English
To modify an existing object in your database, perform the following steps:
let item = JournalItem(title: "What a beautiful day!", content: "Best time for an outing.")item.title = "Nice Weather!"item.update(id: 1) { item, error in ...}
Each record in the main screen has already populated with the Edit link to display a form for editing.
{% include "header.stencil" %}<!--form--><section class="form" id="myForm"><div class="container"><div class="row"><div class="col-lg-12"><div class="heading"><h1>Edit a Journal Entry</h1></div></div></div></div><div class="container ...Read now
Unlock full access