Skip to content

Instantly share code, notes, and snippets.

View IoDmitri's full-sized avatar

Dmitri Iourovitski IoDmitri

  • Palo Alto, California
View GitHub Profile
eventually {
numberOfTimesPolled mustEqual 10
} (config =
PatienceConfig(
timeout = scaled(Span(1000, Millis)),
interval = scaled(Span(1, Millis))
)
)
// in the swift part
extension MyObjectiveCClass {
func myFunctionInSwift(){
println("this is running in Swift")
}
}
//On the objective C Side
class myClass{
let myInt: Int
init(){
myInt = 5
}
}