Functionality
Managing objects
Essentially, there are two functions to manage objects: create
and delete
. Unlike regular functions, these don't directly add features to the app but serve as essential building blocks during app development.
Creating objects
To construct a specific object from a class:
Drag and drop the
create
function of a class to the logic board.Enter the name for your object and any required input arguments.
Trigger the function manually.
The new object, along with its object functions, will appear under the respective class. If you like, you can delete the create
function from the logic board after execution. This action does not impact the object itself.
Deleting objects
Exercise caution when deleting objects, as they may be in use across workspaces and other apps. To delete an object:
Drag and drop the
delete
function of a class to the logic board.Enter the name of the object as an input argument.
Trigger the function manually.
If the object doesn't disappear immediately, it indicates lingering object functions on the logic board. Delete them to remove the object.
Be cautious about deleting objects, as they are shared across Workspaces, and their removal may affect other apps using the same objects.
Last updated