-
SiriKit For Payments – Access Account Balance
This article demoes how to connect your iOS financial app to Siri so that user can ask for the account balance information with their voice. OverView: SiriKit supports user interaction with the app in 11 domains (as of today) like Messaging, Workouts, Payments, CarPlay, Photos, VOIP calling etc. The type of requests user can make…
-
UIAccessibility Tutorial – Part 1
UIAccessibility is a set of methods that provide assistive information for the users with visual disabilities. It lets users access information about the views and controls in UI and let them take actions like UIButton tap etc, also helping to navigate through the app. Accessibility is the most ignored part of the app development, but…
-
FaceId authentication in iOS11, Swift 4
iPhone X released on 11/03/2017 and the most intriguing feature is FaceId authentication. How about adding FaceId authentication for login to our own app?. This article covers code implementation for it. Let’s dive in! Complete movie demo of the code is uploaded here. All the code in this article can be downloaded / cloned from…
-
ARKit detecting planes and placing objects
This Article covers the ARKit plane detection and placing the objects on the plane. It’s written in Swift 4 in Xcode 9 beta version. Here is the screenshot of the output of the project explained in this article. Complete movie demo of the code is uploaded here. All the code in this article can be…
-
Pan drag UIView on UIBezierPath curve
This article covers the one of the solution to pan the UIView along the UIBezierPath curve with UIPanGestureRecognizer. It’s code written in Swift 3, Xcode 8.3.2 Let’s look at the output before going into details. Requirement: There are several examples you can find on stackoverflow on…
-
Drag and Drop in UICollectionView in iOS 11
What’s New: iOS 11 introduced the drag and drop feature that lets you drag , drop the content from one application to other application on iPad. This article provides the high level overview with example code on this to drag and drop the UICollectionViewCells in UICollectionView. Click this see the drag and drop video in…
-
What’s New In Swift 4
This article is to highlight the key features added/ modified in Swift 4. Apple scheduled to release Swift 4 in fall 2017 and its beta versions are already available for download for developers. Downloading Swift 4 Snapshot Swift 4.0 Snapshots are prebuilt binaries that are automatically created from swift-4.0-branch branch. Latest snapshot package downloaded from…