mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
35 lines
1 KiB
Objective-C
Executable file
35 lines
1 KiB
Objective-C
Executable file
//
|
|
// NJKWebViewProgress.h
|
|
//
|
|
// Created by Satoshi Aasano on 4/20/13.
|
|
// Copyright (c) 2013 Satoshi Asano. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#undef njk_weak
|
|
#if __has_feature(objc_arc_weak)
|
|
#define njk_weak weak
|
|
#else
|
|
#define njk_weak unsafe_unretained
|
|
#endif
|
|
|
|
extern const float NJKInitialProgressValue;
|
|
extern const float NJKInteractiveProgressValue;
|
|
extern const float NJKFinalProgressValue;
|
|
|
|
typedef void (^NJKWebViewProgressBlock)(float progress);
|
|
@protocol NJKWebViewProgressDelegate;
|
|
@interface NJKWebViewProgress : NSObject<UIWebViewDelegate>
|
|
@property (nonatomic, njk_weak) id<NJKWebViewProgressDelegate>progressDelegate;
|
|
@property (nonatomic, njk_weak) id<UIWebViewDelegate>webViewProxyDelegate;
|
|
@property (nonatomic, copy) NJKWebViewProgressBlock progressBlock;
|
|
@property (nonatomic, readonly) float progress; // 0.0..1.0
|
|
|
|
- (void)reset;
|
|
@end
|
|
|
|
@protocol NJKWebViewProgressDelegate <NSObject>
|
|
- (void)webViewProgress:(NJKWebViewProgress *)webViewProgress updateProgress:(float)progress;
|
|
@end
|
|
|