| 123456789101112131415161718192021222324 |
- //
- // WebBrowseViewController.h
- // kneet
- //
- // Created by Jason Lee on 5/13/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @interface WebBrowseViewController : JDViewController
- #pragma mark - Properties
- @property (strong, nonatomic) NSString *titleString;
- @property (strong, nonatomic) NSString *URLString;
- @property (weak, nonatomic) IBOutlet UIWebView *webView;
- #pragma mark - Instance Methods
- @end
|