Initial commit
This commit is contained in:
+36
@@ -0,0 +1,36 @@
|
||||
//
|
||||
// NJKWebViewProgress.h
|
||||
//
|
||||
// Created by Satoshi Aasano on 4/20/13.
|
||||
// Copyright (c) 2013 Satoshi Asano. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <UIKit/UIKit.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
|
||||
|
||||
Reference in New Issue
Block a user