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
| func printDate(string: String) { | |
| let date = Date() | |
| let formatter = DateFormatter() | |
| formatter.dateFormat = "HH:mm:ss.SSSS" | |
| print(string + formatter.string(from: date)) | |
| } |
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
| // | |
| // GSSimpleImageView.swift | |
| // GSSimpleImage | |
| // | |
| // Created by 胡秋实 on 16/1/2016. | |
| // Copyright © 2016 CocoaPods. All rights reserved. | |
| // | |
| import UIKit |