Add projects

This commit is contained in:
Ivan Vorobei
2019-06-07 09:02:12 +03:00
parent f385cd4929
commit fce7627f56
42 changed files with 2011 additions and 0 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.
}
}