Set padding for UITextField on iOS with Swift
Learn how to set padding on UITextField on iOS with Swift as there is no native support for this functionality.
Learn how to set padding on UITextField on iOS with Swift as there is no native support for this functionality.
In a recent project I needed to fetch information about WiFi network you’re currently connected to and also scan for all nearby WiFi networks. So can we do this on iOS? Answer is not that simple and in this post I’ll explain what information you can get and how.
iOS has a pretty powerful API for working with maps and tracking user locations. Learn how to get user location on iOS with Swift in this simple tutorial.
Push notification is a message that is “pushed” from server to client application. Learn how to send a push notification with media attachment and provide actions that user can take without opening an app.
Push notification is a message that is “pushed” from server to client application. From its introduction back in 2009., push notifications became more and more powerful and from iOS 10 you can use push notifications for more than sending a short message. Read this article to find out what you can do with push notifications and how.
Apple starts shipping iPhone X on November 3rd, 2017. Did you prepare your iOS apps for iPhone X? If your answer is no, read this article to find out more.
MVVM design pattern (Model-View-ViewModel) is one of alternative design patterns in software development to MVC that solves common issues with MVC which results in smaller view controllers, better code separation and improved testability.