Created
July 28, 2017 15:56
-
-
Save Alicelovecode/6c5cee833f1a4ea7debf683392eab6b2 to your computer and use it in GitHub Desktop.
book1.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import UIKit | |
| class ContentViewController: UIViewController{ | |
| var nowPageNumber = 0 | |
| @IBOutlet weak var mainImageView: UIImageView! | |
| override func viewDidLoad() { | |
| super.viewDidLoad() | |
| mainImageView.image = UIImage(named:"\(nowPageNumber)") | |
| } | |
| override func didReceiveMemoryWarning() { | |
| super.didReceiveMemoryWarning() | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment