Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Znav
nextObjective-C Mapping for Structures
prevObjective-C Mapping for Built-In Types

A Slice enumeration maps to the corresponding enumeration in Objective-C. For example:

Wiki Markup
{zcode:slice}
["objc:prefix:EX"]
module Example {
    enum Fruit { Apple, Pear, Orange };
};
{zcode}

The generated Objective-C definition is:

Wiki Markup
{zcode:objc}
typedef enum {
    EXApple, EXPear, EXOrange
} EXFruit;
{zcode}
Ztop
See Also
Zret
Znav
nextObjective-C Mapping for Structures
prevObjective-C Mapping for Built-In Types