Advertisement
Guest User

Untitled

a guest
Jun 2nd, 2015
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. //
  2. // ViewController.swift
  3. // FunFacts
  4. //
  5. // Created by Rob on 5/31/15.
  6. // Copyright (c) 2015 RobSOFT. All rights reserved.
  7. //
  8.  
  9. import UIKit
  10.  
  11. class ViewController: UIViewController {
  12.  
  13. override func viewDidLoad() {
  14. super.viewDidLoad()
  15. // Do any additional setup after loading the view, typically from a nib.
  16. }
  17.  
  18. override func didReceiveMemoryWarning() {
  19. super.didReceiveMemoryWarning()
  20. // Dispose of any resources that can be recreated.
  21. }
  22.  
  23. @IBAction func showFunFact() {
  24. println("You pressed me!")
  25. }
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement