Skip to content
View Tricertops's full-sized avatar
:octocat:
:octocat:
Block or Report

Block or report Tricertops

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. SwiftToolbox SwiftToolbox Public

    Collection of additions to Swift that I use in every project.

    Swift 4

  2. GEOCoordinateFormatter GEOCoordinateFormatter Public

    NSFormatter for geographic coordinates

    Swift 6

  3. KeepLayout KeepLayout Public

    Making Auto Layout easier to code.

    Objective-C 839 75

  4. Where Where Public

    Locate the user of the current iOS device without CoreLocation.

    Objective-C 10

  5. TetrisEngine TetrisEngine Public

    Core of a simple Tetris game with no UI

    Swift 12 1

  6. How we used MVVM architecture and a ... How we used MVVM architecture and a reactive framework to build our latest iOS app, from theory to actual code examples.
    1
    View → Design → Model
    2
    =====================
    3
    iOS applications are usually built with **MVC** _(Model – View – Controller)_ architecture, which introduces very important concept of separating actual **data** _(Model Layer)_ and their **presentation** _(View Layer)_, while the application **logic** _(Controller Layer)_ stands between them.
    4
    
                  
    5
    > View ← Controller → Model