Automatic vs Manual Reloading

TickarooOptionRefreshBehavior

with the TickarooOptionRefreshBehavior option you can control how the liveblog reload is handled. You have to provide a value of type T2Refresh.

typedef NS_OPTIONS(NSUInteger, T2Refresh) {
    T2RefreshDisabled  = 0,
    T2RefreshUser      = 1 << 0,
    T2RefreshAuto      = 1 << 1,
    T2RefreshNotify    = 1 << 2,
    T2RefreshNormal    = (T2RefreshUser | T2RefreshAuto),
};
  • T2RefreshDisabled The user can not reload the content at all.
  • T2RefreshUser The content is reloaded by user interaction e.g. pull-to-reload or button click.
  • T2RefreshAuto The content is reloaded automatically, no user interaction is required. The interval of the reload is controlled by the backend.
  • T2RefreshNotify Not available yet
  • T2RefreshNormal The Content is both, reloaded by user interaction and automatically. Default