Skip to content

Instantly share code, notes, and snippets.

@tryadelion
Created November 15, 2016 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tryadelion/7946cf0a7852b258c3da0c77ad7b7dba to your computer and use it in GitHub Desktop.
Save tryadelion/7946cf0a7852b258c3da0c77ad7b7dba to your computer and use it in GitHub Desktop.
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