mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
25 lines
565 B
C
25 lines
565 B
C
![]() |
//
|
||
|
// OSKActivityIndicatorItem.h
|
||
|
// Overshare
|
||
|
//
|
||
|
// Created by Jared Sinclair on 10/19/13.
|
||
|
// Copyright (c) 2013 Overshare Kit. All rights reserved.
|
||
|
//
|
||
|
|
||
|
@import UIKit;
|
||
|
|
||
|
typedef NS_ENUM(NSInteger, OSKActivityIndicatorItemPosition) {
|
||
|
OSKActivityIndicatorItemPosition_Right,
|
||
|
OSKActivityIndicatorItemPosition_Left,
|
||
|
};
|
||
|
|
||
|
@interface OSKActivityIndicatorItem : UIBarButtonItem
|
||
|
|
||
|
@property (assign, nonatomic) OSKActivityIndicatorItemPosition position;
|
||
|
|
||
|
+ (instancetype)item:(UIActivityIndicatorViewStyle)style;
|
||
|
- (void)startSpinning;
|
||
|
- (void)stopSpinning;
|
||
|
|
||
|
@end
|