1- Extension: 2- Property Wrappers:
Tag: iOS Development
iOS Fastlane Setup
This is a guideline for installing fastlane on your mac. 1- Install Xcode command line tools: xcode-select — install 2- Install Homebrew: https://brew.sh/ 3- Install ruby. Ruby is already installed on Mac but I highly recommend to install a new version with brew. Check below links if you encounter any problem: brew install ruby https://stackoverflow.com/questions/39381360/how-do-i-install-ruby-gems-on-mac…
Testing iOS SSL Pinning With Charles
So you have finished implementing SSL Pinning with your favorite tool (URLSession, AlamoFire, AFNetworking, etc…) and you want to test it. I would suggest using Charles on doing that. As in “https://www.charlesproxy.com” stated, “Charles is an HTTP proxy / HTTP monitor / Reverse Proxy that enables a developer to view all of the HTTP and…
UIScrollView Content Layout Guide with Auto Layout in Interface Builder
I will try to keep this short enough. With iOS11, Apple introduced Content Layout Guide for UIScrollView and I will show you how it’s used with a vertical UIScrollView example: 1- Add a UIScrollView and attach it to safe area. Don’t worry about the errors yet. Content Layout Guides is checked by default. 2- You…
