4
Variables de función estática en Swift
Estoy tratando de averiguar cómo declarar una variable estática con alcance solo localmente a una función en Swift. En C, esto podría verse así: int foo() { static int timesCalled = 0; ++timesCalled; return timesCalled; } En Objective-C, es básicamente lo mismo: - (NSInteger)foo { static NSInteger timesCalled = 0; …