Created
August 5, 2015 21:32
-
-
Save SlaunchaMan/614c1cb04ad01ca2f9fa to your computer and use it in GitHub Desktop.
Objective-C → 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 Foundation | |
class Dog: NSObject { | |
var breed: String | |
var height: Double | |
var color: String | |
var weight: Double | |
init(breed: String, newHeight: Double, newColor: String, newWeight: Double) | |
func description() -> String | |
func bark() | |
func wagTail() | |
func whine() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment