Unit test Network Layer
Nov 21, 2018, 5:52 PM
To be honest.. writing unit tests in iOS is a myth. Usually iOS developers work for small startups, which source money from investors. It is important for those investors to create a product as soon as possible. Manuall tests or...
Dependency Inversion Swift
Sep 10, 2018, 1:14 PM
Dependency inversion is the last letter of SOLID therm. Last position doesn’t mean less important than the other, in my opinion this principle is the most important software design pattern.The general idea of this principle is as simple as...
Network Layer in Swift 4.0
Sep 6, 2018, 1:11 PM
Every time when i start a new project there is the same question. How to implement a network layer? To use external libraries like Moya, Alamofire etc. or to write it from the scratch.My answer for this question is — Use pure Swift without...