Sitemap

A list of all the posts and pages found on the site. For you robots out there is an XML version available for digesting as well.

Pages

Posts

publications

How to build Slide Out Menu in Swift? Permalink

Published in Nerd For Tech, 2020

When you’re asked to build Slide Out, the first thing that you think is to bridge SWRevealViewController in your project, but hold on. Have you ever thought how to build Slide Out Menu from scratch before? In this article we’ll learn how to build Slide-Out to use it in your app, so Let’s dive into the code.

Is Trying to index into String really hard? Permalink

Published in Medium, 2021

Since Swift 2,String does no longer conform to SequenceType.In other words, you can not iterate through a string with a for...in loop. In this article I tried to set an easy way, and put down my workaround to solve this problem.