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:

  1. Drag and drop the create function of a class to the logic board.

  2. Enter the name for your object and any required input arguments.

  3. 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.

Objects are shared across Workspaces and thus accessible from all apps within a Workspace.

Deleting objects

Exercise caution when deleting objects, as they may be in use across workspaces and other apps. To delete an object:

  1. Drag and drop the delete function of a class to the logic board.

  2. Enter the name of the object as an input argument.

  3. 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.

Last updated