Created
November 15, 2016 19:46
-
-
Save tryadelion/7946cf0a7852b258c3da0c77ad7b7dba to your computer and use it in GitHub Desktop.
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 TestItem{ | |
var title = "" | |
var subtitle = "" | |
var position = 0 | |
init(){} | |
init(title : String, subtitle : String,position : Int){ | |
self.title = title | |
self.subtitle = subtitle | |
self.position = position | |
} | |
} | |
//USAGE: var item = TestItem(title : "swift",subtitle: "worth it",0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment