GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

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

ValueDescription
manualItems are arranged manually according to a custom-defined order.
recentlyUpdatedFirstItems are ordered based on their most recent update timestamp, with the most recently updated items appearing at the beginning.
recentlyUpdatedLastItems are ordered based on their most recent update timestamp, with the most recently updated items appearing at the end.
aToZItems are arranged in alphabetical order from A to Z based on their titles.
zToAItems are arranged in alphabetical order from Z to A based on their titles.
recentlyCreatedFirstSorts 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)
recentlyCreatedLastSorts 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)
randomItem are ordered randomly.

Did this page help you?