1. Code

Code Learning Guides

If you want to become a better developer, try these code learning guides. Each one is a hand-picked collection of free code tutorials on a relevant theme, like WordPress Gutenberg or creating an Angular app.

Find everything you need here, whether you’re a web developer or mobile app developer, and no matter which programming language you use. These learning guides bring together over a decade of free code tutorials on Envato Tuts+, covering a huge range of topics.

Do you want to build a React app? Create interactive charts? Get up to speed on machine learning? You’ll find all of that and more here.

  1. Better iOS App Architecture With MVVM

    2 Posts
    MVC stands for Model-View-Controller, and it's a widespread architectural pattern for software development. It's the de facto design pattern for Cocoa development, and it has been for many, many years. Most of us can't imagine building applications without it. Both UIKit (iOS) and AppKit (macOS) make frequent use of MVC. It almost seems as if we don't have another option to build applications for iOS, tvOS, macOS, and watchOS.
    View Learning Guide...
  2. SpriteKit Basics

    5 Posts
    SpriteKit is Apple's 2D game engine—a rendering engine built on top of OpenGL. It was introduced with iOS 7, and each subsequent release has brought great additions to the framework. With the use of textured sprites, a built-in physics engine, and the very powerful SKAction class, you can very quickly build functional 2D games.
    View Learning Guide...
  3. Securing iOS Data at Rest

    3 Posts
    This is the first of a 3-part series of articles on securing data at rest. You will start off with the basics of protecting data on iOS, and the second and third articles will cover using the keychain services and encryption APIs. You'll learn the current best practices for storing data securely for users of your iOS app in Swift.
    View Learning Guide...
  4. Data Validation With Core Data

    2 Posts
    No matter what persistence framework an application uses, the developer decides what is stored in the application's persistent store. This also means that the developer is in charge of validating the data before it is inserted into the persistent store. If your application uses Core Data for persisting data, then you are in luck. The framework has a number of APIs for validating objects before they are persisted to disk. In this series, I show you what options Core Data offers developers for validating objects.
    View Learning Guide...
  5. SpriteKit From Scratch

    5 Posts
    In this series about SpriteKit, you will learn the basics to build fantastic games with Apple's excellent framework for creating 2D games. You will learn about views, scenes, and nodes, and you will work with SpriteKit's powerful physics engine.
    View Learning Guide...