BlazeOrderType - iOS
The BlazeOrderType enum defines the available ordering types for the content in the BlazeWidgetView. The ordering types determine how the stories are sorted and displayed within the widget. Here are the available ordering types based on the enum.
Consider that
| Value | Description |
|---|---|
| manual | Items are arranged manually according to a custom-defined order. |
| recentlyUpdatedFirst | Items are ordered based on their most recent update timestamp, with the most recently updated items appearing at the beginning. |
| recentlyUpdatedLast | Items are ordered based on their most recent update timestamp, with the most recently updated items appearing at the end. |
| aToZ | Items are arranged in alphabetical order from A to Z based on their titles. |
| zToA | Items are arranged in alphabetical order from Z to A based on their titles. |
| recentlyCreatedFirst | Sorts the items by their last creation time in descending order, meaning the most recently created items will be displayed first. (Available starting from SDK version 0.0.65) |
| recentlyCreatedLast | Sorts the items by their last creation time in ascending order, meaning the least recently created items will be displayed first. (Available starting from SDK version 0.0.65) |
| random | Item are ordered randomly. |
Updated 22 days ago
Did this page help you?
