Swift Struct and Class Difference

Struct Value type Copied when passed or assigned Copy on write Functional programming No inheritance “Free” init initializes ALL vars Mutability must be explicitly stated Your “go-to” data structure Class Reference type Passed around via pointers Automatically reference counted Object-oriented programming Inheritance (single) “Free” init initializes NO vars Always mutable Used in specific circumstances The… Read More Swift Struct and Class Difference

Set Up OmniScript Type Ahead Autocomplete with the Google Places API

In this post, we are going to learn how to set up OmniScript Type Ahead autocomplete with Google Places API. You’ve seen this implemented in most forms that require input for an address and then as you type the address autocompletes and optionally we see it populates other fields in the form like the street… Read More Set Up OmniScript Type Ahead Autocomplete with the Google Places API