diff --git a/JBWebViewController.podspec b/JBWebViewController.podspec index 7da350b..c51feff 100644 --- a/JBWebViewController.podspec +++ b/JBWebViewController.podspec @@ -27,7 +27,7 @@ Pod::Spec.new do |s| s.resources = "JBWebViewController/Icons.xcassets" s.weak_framework = 'WebKit' s.requires_arc = true - s.dependency 'ARChromeActivity', '1.0' - s.dependency 'ARSafariActivity', '0.0.1' - s.dependency 'NJKWebViewProgress', '0.2' + s.dependency 'ARChromeActivity', '1.0.4' + s.dependency 'ARSafariActivity', '0.0.3' + s.dependency 'NJKWebViewProgress', '0.2.3' end diff --git a/JBWebViewController/JBWebViewController.h b/JBWebViewController/JBWebViewController.h index eea2c9a..5e6f88d 100644 --- a/JBWebViewController/JBWebViewController.h +++ b/JBWebViewController/JBWebViewController.h @@ -24,6 +24,17 @@ typedef void (^completion)(JBWebViewController *controller); // Loding string @property (nonatomic, strong) NSString *loadingString; +@property (nonatomic, strong) NSURL *url; +@property (nonatomic) BOOL hasExtraButtons; +@property (nonatomic, strong) UIView *titleView; +@property (nonatomic, strong) UIWebView *webView; +@property (nonatomic, strong) UILabel *titleLabel; +@property (nonatomic, strong) UILabel *subtitleLabel; +@property (nonatomic, strong) NJKWebViewProgress *progressProxy; +@property (nonatomic, strong) NJKWebViewProgressView *progressView; +@property (nonatomic, strong) UIPopoverController *popoverShareController; + + // Public header methods - (id)initWithUrl:(NSURL *)url; - (void)show; diff --git a/JBWebViewController/JBWebViewController.m b/JBWebViewController/JBWebViewController.m index b831d7d..ef0c51f 100644 --- a/JBWebViewController/JBWebViewController.m +++ b/JBWebViewController/JBWebViewController.m @@ -11,15 +11,7 @@ @interface JBWebViewController () // Private properties - @property (nonatomic, strong) NSURL *url; - @property (nonatomic) BOOL hasExtraButtons; - @property (nonatomic, strong) UIView *titleView; - @property (nonatomic, strong) UIWebView *webView; - @property (nonatomic, strong) UILabel *titleLabel; - @property (nonatomic, strong) UILabel *subtitleLabel; - @property (nonatomic, strong) NJKWebViewProgress *progressProxy; - @property (nonatomic, strong) NJKWebViewProgressView *progressView; - @property (nonatomic, strong) UIPopoverController *popoverShareController; + @end diff --git a/README.md b/README.md index 15becb6..60bc891 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ JBWebViewController =================== +Every property is public now. + A drop-in Facebook inspired modal web browser. Created under the [DigitalOcean Hacktoberfest](http://hacktoberfest.digitalocean.com/).