Posts by Diogo Aleixo • 121 points
4 posts
-
1
votes1
answer609
viewsA: MVC Dao - How Do I Separate DAO from the Control Class?
Good You need to know what MVC is. I’d say you don’t understand it and what each layer has. The model M, communicates with the controller C which in turn communicates with the view V. The DAO is a…
-
0
votes4
answers364
viewsA: Swift 3 - How to persist objects
You have several ways to persist data on IOS. You got the UserDefaults but the goal is not to store large amounts of data. You can only store primitive data. You have Sqllite or Wrappers for the…
-
1
votes1
answer399
viewsA: What is the importance of Weak and unowned in Swift?
These references have to do with the ARC. In practice you’re telling the compiler what kind of reference is that variable so he can avoid circular references. Typically you have Strong, Weak and…
-
-1
votes3
answers542
viewsA: What do you call that "view change" effect by sliding?
I think you mean Navigation container containers for example. In these View controllers you can slide it to pop the view controller from the top of the stack.