This commit is contained in:
Ivan Vorobei
2019-06-26 22:12:35 +03:00
parent 2477f5d038
commit 48001a8e9a
1363 changed files with 6 additions and 3 deletions

View File

@@ -0,0 +1,32 @@
//
// ViewController.swift
// SwiftTest1
//
// Created by Jacob Holman on 6/3/14.
// Copyright (c) 2014 Jacob Holman. All rights reserved.
//
import UIKit
class ViewController: UIViewController {
@IBOutlet var helloWeb : UIWebView
override func viewDidLoad() {
super.viewDidLoad()
}
@IBAction func buttonTapped(AnyObject) {
helloWeb.loadRequest(NSURLRequest(URL:NSURL(string:"https://www.google.com")))
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}