Advertisement
Guest User

Untitled

a guest
May 29th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. @interface ViewController ()
  2.  
  3. IBOutlet UIWebView* webView;
  4.  
  5. @property (nonatomic, retain) UIWebView *webView;
  6.  
  7. @end
  8.  
  9. @implementation ViewController
  10.  
  11. @synthesize webView;
  12.  
  13. - (void)viewDidLoad {
  14. [super viewDidLoad];
  15. // Do any additional setup after loading the view, typically from a nib.
  16. }
  17.  
  18. - (void)didReceiveMemoryWarning {
  19. [super didReceiveMemoryWarning];
  20. // Dispose of any resources that can be recreated.
  21. }
  22.  
  23. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement