Advertisement
Guest User

Untitled

a guest
Apr 13th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. class ViewController: UIViewController {
  2.  
  3. @IBOutlet weak var logoImg: UIImageView!
  4.  
  5. @IBOutlet weak var username: UITextField!
  6.  
  7. @IBOutlet weak var password: UITextField!
  8.  
  9. @IBOutlet weak var loginBtn: UIButton!
  10.  
  11. @IBOutlet weak var webView: UIWebView!
  12.  
  13.  
  14.  
  15. @IBAction func loginBtn(sender: AnyObject) {
  16. let url = NSURL (string: "http://www.google.de");
  17. webView.loadRequest(NSURLRequest(URL: url!))
  18.  
  19. }
  20.  
  21. override func viewDidLoad() {
  22. super.viewDidLoad()
  23.  
  24. }
  25.  
  26. override func didReceiveMemoryWarning() {
  27. super.didReceiveMemoryWarning()
  28. // Dispose of any resources that can be recreated.
  29. }
  30.  
  31.  
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement