20 lines
203 B
Swift
20 lines
203 B
Swift
|
|
class MyClass{
|
||
|
|
|
||
|
|
// stored property
|
||
|
|
var variable : Int
|
||
|
|
|
||
|
|
/**
|
||
|
|
* The constructor
|
||
|
|
*/
|
||
|
|
init() {
|
||
|
|
self.variable = 42
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* A method
|
||
|
|
*/
|
||
|
|
func someMethod() {
|
||
|
|
self.variable = 1
|
||
|
|
}
|
||
|
|
}
|