Skip to content
This repository was archived by the owner on Nov 15, 2018. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions JBWebViewController.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
11 changes: 11 additions & 0 deletions JBWebViewController/JBWebViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
10 changes: 1 addition & 9 deletions JBWebViewController/JBWebViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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/).
Expand Down