High Order Functions in SwiftUse the power of HoF to make your code elegant According to Wikipedia this is the definition of a High Order Function Source: https://en.wikipedia.org/wiki/Higher-order_function In Swift High order Functions are generally used on Collections , the m...Nov 4, 2022·4 min read·78
Animating thermometer using CoreAnimationBuild and animate thermometer using Core Animation What are we going to build? https://twitter.com/bottom__fragger/status/1258391172755660805?s=20 Let’s get started! We will first start by creating a file ThermometerView which will be a subclass of U...Nov 4, 2022·5 min read·44
WebSockets in Swift Using URLSession’s WebSocketTaskWebSockets allows the setup of a very fast two-way secure network connection between different parties. This is different from the HTTP protocol and used only when we need real-time updates. For example, all of the chat apps you use are built using W...Nov 4, 2022·7 min read·2.4K
Using SFSafariViewController in your iOS appWhile developing iOS apps it is very common to encounter a situation when you have to open an external link. It can come with two scenarios whether you want to open the external link inside the app or outside the app. There are some different ways in...Nov 4, 2022·3 min read·139
Auto layout for iOS/iPadOS applicationsHave you ever tried to make your apps look good in both landscape and portrait orientation? Wasn’t it frustrating to make views for both landscape and portrait separately? Is making screen layouts that support both the iPhone and iPad driving you cra...Nov 4, 2022·10 min read·105