mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
24 lines
448 B
C
24 lines
448 B
C
![]() |
//
|
||
|
// NBNotifier.h
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by Samuel Clay on 6/6/13.
|
||
|
// Copyright (c) 2013 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@interface NBNotifier : UIView
|
||
|
|
||
|
typedef enum {
|
||
|
NBOfflineStyle = 1,
|
||
|
NBLoadingStyle = 2,
|
||
|
NBSyncingStyle = 3
|
||
|
} NBNotifierStyle;
|
||
|
|
||
|
@property (assign, nonatomic) NSString *_text;
|
||
|
@property (assign, nonatomic) NBNotifierStyle *_style;
|
||
|
@property (assign, nonatomic) UIView *_view;
|
||
|
|
||
|
@end
|