swift
-
A Beginner’s Guide to Access Levels in Swift
One of the most important topics one should know in Swift is about access levels. In this post I'm going through them, and discussing extensively about when and how to use them in Swift projects.
-
Implementing Drag And Drop Operations Using NSPasteboard on macOS
Performing drag-and-drop operations is a must-know topic for each developer making apps on macOS. Learn how to do so in this macOS programming tutorial.
-
Understanding Higher Order Functions in Swift
There are things in Swift that can be done in a good or in a better way. Learn about higher order functions in Swift and don't stay on just "good"!
-
The Complete Guide to NSOutlineView in macOS Programming
Read about the NSOutlineView control on macOS, and how to integrate it in projects. Find out the details about its configuration, how to deal with items, and more, and add flexibility to your macOS apps.
-
A Complete Guide to In-App Purchases for iOS Development
A step-by-step guide on how to create in-app purchase records on App Store, and on how to prepare your app programmatically so it can offer IAPs to users!
-
Working with Collection Views on macOS
Learn how to add collection views on macOS projects and how to display collections of data with that standard control.
-
Using Swift Protocols to Manage App Configuration
Manage in-app settings and configuration using protocols. A practical approach on a really handy solution to speed up the development flow.
-
Creating Reusable Libraries with CocoaPods and GitHub
Welcome back! In the previous tutorial, you learned how to use the Network Framework to detect and monitor the network status. The framework seems to be working fine through the NetStatus class, so let’s go one step further and let’s create our own small, open-source framework that will be based on the NetStatus class. In…