Guide on using ReactJS with Django Part 1/3 Apr 29, 2017 This is a step by step guide on setting up ReactJS to work with a Django backend. It can be use on a existing project or a brand new project.... [read more]
Unit Test - UICollectionView in UIViewController with example Feb 26, 2017 Testing is an important aspect of development. No matters if you belong to the Test Driven Development(TDD) group or not, one should never ignore tests. Beginning from Xcode 5, Apple... [read more]
State Pattern to Manage Reuseable View Controller Jan 21, 2017 Is quite common to have a ViewController being able to access by different type of User. GuestUser, NormalUser, AdminUser and etc. Very often the different in the ViewController is subtle.... [read more]
Handling API Response with enum Jan 15, 2017 Coming from Objective-C we tend to bring over what we use to do into swift. One thing that I am so use to doing are the way network response is... [read more]
Building a NSTouchBar App Dec 30, 2016 The new MacBook Pro with its fancy touch bar has been released by Apple. Being a developer, we always look to toy with the newest technology. In this tutorial, I... [read more]
Maintainable configuration with struct! Dec 16, 2016 Yes, you read it right. Although many times, we uses enums and switch but there is a much more maintainable and readable configuration pattern by using struct. I first read... [read more]
Custom action and Notification Content Extension Dec 1, 2016 Beside adding image, GIF or video to notification, we can also allow user to interact with it. Using UNNotificationAction, we can add button for user to response to the received... [read more]