UIView(ActivityIndication) Category Reference
Conforms to | RBActivityViewDelegate |
---|---|
Declared in | UIView+ActivityIndication.h |
activityView
The activity view.
@property (nonatomic, readonly, nullable) RBActivityView *activityView
Discussion
The activity view.
Declared In
UIView+ActivityIndication.h
activityRunning
Whether or not the activity indicator is currently active.
@property (nonatomic, readonly) BOOL activityRunning
Discussion
Whether or not the activity indicator is currently active.
Declared In
UIView+ActivityIndication.h
– stopAllIndeterminateActivities
Stops all of the currently running indeterminate activities.
- (void)stopAllIndeterminateActivities
Discussion
Stops all of the currently running indeterminate activities.
Declared In
UIView+ActivityIndication.h
– startIndeterminateActivity
Starts an indeterminate activity.
- (void)startIndeterminateActivity
Discussion
Starts an indeterminate activity.
Declared In
UIView+ActivityIndication.h
– stopIndeterminateActivity
Stops an indeterminate activity.
- (void)stopIndeterminateActivity
Discussion
Stops an indeterminate activity.
Declared In
UIView+ActivityIndication.h
– startDeterminateActivityWithID:
Starts a determinate activity with the given unique identifier used to provide updates.
- (void)startDeterminateActivityWithID:(nonnull NSString *)indentifier
Parameters
indentifier |
The unique identifier of this determinate activity job. |
---|
Discussion
Starts a determinate activity with the given unique identifier used to provide updates.
Declared In
UIView+ActivityIndication.h
– stopDeterminateActivityWithID:
Stops the determinate activity with the given unique identifier.
- (void)stopDeterminateActivityWithID:(nonnull NSString *)indentifier
Parameters
indentifier |
The unique identifier of the determinate activity to stop. |
---|
Discussion
Stops the determinate activity with the given unique identifier.
Declared In
UIView+ActivityIndication.h
– setDeterminateActivityProgress:withText:withID:
Updates the progress of a determinate activity.
- (void)setDeterminateActivityProgress:(float)progress withText:(nullable NSString *)text withID:(nonnull NSString *)identifier
Parameters
progress |
The current progress from 0 to 1. |
---|---|
text |
A string describing the current state of the determinate activity. |
identifier |
The unique identifier of the determinate activity. |
Discussion
Updates the progress of a determinate activity.
Declared In
UIView+ActivityIndication.h
– viewActivitiesWillBegin
Called when the activity indicator will become active.
- (void)viewActivitiesWillBegin
Discussion
Called when the activity indicator will become active.
Declared In
UIView+ActivityIndication.h
– viewActivitiesDidBegin
Called when the activity indicator did become active.
- (void)viewActivitiesDidBegin
Discussion
Called when the activity indicator did become active.
Declared In
UIView+ActivityIndication.h
– viewActivitiesWillStop
Called when the activity indicator will become inactive.
- (void)viewActivitiesWillStop
Discussion
Called when the activity indicator will become inactive.
Declared In
UIView+ActivityIndication.h
– viewActivitiesDidStop
Called when the activity indicator did become inactive.
- (void)viewActivitiesDidStop
Discussion
Called when the activity indicator did become inactive.
Declared In
UIView+ActivityIndication.h