Tag Archives: iOS

Magic of RxSwift. Rx Operators

      No Comments on Magic of RxSwift. Rx Operators

RxSwift uses quite a lot of operators utilizing reactive patterns. It is a core part where its magic happens. The Clarke’s third law says: Any sufficiently advanced technology is indistinguishable from magic. In the previous article, we found out the basic object of the RxSwift, an Observable. The other significant… Read more »

Generating Strong Passwords With AutoFill

      No Comments on Generating Strong Passwords With AutoFill

It’s important for our users to have strong passwords. But, strong passwords are usually tedious to type in and often frustrate the users, not to mention that they’re hard to remember. In this article we will be generating strong passwords with AutoFill and store them in the keychain so they… Read more »

Reading Barcodes And QR Codes With AVFoundation

There’s a really simple way to read barcodes, QR codes and all sorts of machine readable code by using nothing more than AVFoundation. In this quick article we’ll be reading barcodes and QR codes with AVFoundation in no time. Let’s get started. The App We’ll build a simple app that… Read more »

Automated Code Review With codebeat

      No Comments on Automated Code Review With codebeat

Code reviews are an important part of our day-to-day life as developers. They improve the codebase and they help us learn. When we review code, especially when we’re under pressure, we could rush things and make mistakes or oversights. Fortunately, there’s a tool that can review the code for us…. Read more »

Get started with RxSwift and reactive programming

The Reactive programming is getting popular as it is a completely different paradigm. Programmers use imperative programming quite a long time and it is prevailing nowadays. We are observing the RxSwift version 4.0 along with RxCocoa 4.0. The latter is the set of extensions for Cocoa elements such as UITextField,… Read more »

Parsing Phone Numbers With libPhoneNumber-iOS

libPhoneNumber-iOS is an iOS port of the Google’s libPhoneNumber library. It’s very simple to use and with cocoapods it’s real easy to get started with it. In this blog post we’ll go over setting up your project and we’ll get started parsing phone numbers with libPhoneNumber-iOS. The Library Like we… Read more »