Mateus

Results 3 issues of Mateus

according to the [Apple's docs](https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/ProgrammingWithObjectiveC/Conventions/Conventions.html) the **NS** and **UI** prefixes are exclusively for Apple classes, otherwise your own classes could collide with future apple's classes >> In order to keep...

I would be nice to have ObjC blocks translation as promised, here are the snippets e.g: **Objective C blocks without params** ``` objc [UIView animateWithDuration:0.2 animations:^{view.alpha = 0.0;}] ``` **to...

I changed the current eachWithIndex implementation from using a inner variable (var i = 0; i++) to the enumerate function.