nsurlsessiond downloading while running iOS Simulator!!

Hello Folks,

Most of iOS developers are currently working form home and many developers are using the mobile internet. I am also one of them 😀

I was facing one issue that, in whole day GBs of data gone from my internet pack. So, I have checked the activity monitor for the network processes.

It’s strange! The process called nsurlsessiond was taking all the bandwidth when I was running the iOS simulator and if I quit the iOS simulator then this download process stops!

activity monitor of nsurlsessiond

Here, I found the solution for it!

Read more

How to add new Firebase Crahlytics SDK to your iOS project?

Now a days Fabric is sending notice for migrating, as I got email today about [FINAL NOTICE] Fabric is shutting down May 4, 2020. We can move to the new Firebase Crashlytics SDK.

Integrating the new Firebase Crashlytics SDK is quick and easy. Let’s take a look.

Read more

How to set alternate icon for an iOS app programmatically?

Hello iOS Devs,
Hope you guys doing well in this COVID-19 situation. Stay Safe At Home.

In this week Xcode 11.4 released. Many new things came with that. You can check What’s new in Xcode 11.4? blog for the same.

App icon change functionality is available from iOS 10.3. In this tutorial we will learn to set an alternate icon for an iOS application programmatically.

Let’s Start!

Read more

What’s new in Xcode 11.4?

Xcode 11.4 includes SDKs for iOS 13.4, iPadOS 13.4, tvOS 13.4, watchOS 6.2, and macOS Catalina 10.15.4. Xcode 11.4 supports on-device debugging for iOS 8 and later, tvOS 9 and later, and watchOS 2 and later. Xcode 11.4 requires a Mac running macOS Catalina 10.15.2 or later.

Read more

SwiftUI Animations – 3D Rotation Effect

SwiftUI has lots of new features with easiest way of implementation. In this tutorial, you’ll learn how to add fancy 3D animations with SwiftUI. 

rotation3DEffect

The rotation3DEffect() modifier gives output like as rotating views in 3D.

This modifier have two parameters:

angle: for rotate view in specified angle/degrees
axis: for X, Y and Z axis to perform rotation.

For Example:

Let’s Do It With Animation

Now we will create one button with rotating view by 3D Effect.

Read more

Quick Notes on Apple Event 2019

  • Apple Arcade
  • Apple Arcade $4.99 a month with a one month free trial
  • Apple TV+, available November 1st for $4.99/mo, free 1-year subscription with the purchase of a new device.
  • New 10.2” iPad
  • Announced the Apple Research app
  • Apple Watch Series 5
  • Always-on display on the Apple Watch Series 5!
  • iPhone 11
  • iPhone 11 has an ultra-wide camera, new UI in the Camera app for it
  • iPhone 11 camera has night mode
  • Slofies – Slomo Selfies
  • iPhone 11 starts at $699
  • iPhone 11 Pro & Pro Max
  • Super Retina XDR Display on the iPhone 11 Pro
  • iPhone 11 Pro battery lasts 4 hours longer than iPhone Xs, comes with fast charger in the box
  • Deep Fusion image processing system on the iPhone 11 Pro
  • iPhone 11 Pro available for pre-order Friday 5AM PDT, starts at $999

SwiftUI Tutorial – Creating and Combining Views

SwiftUI announced in WWDC 2019. It’s an innovative, exceptionally simple way to build user interfaces across all Apple platforms with the power of Swift. In previous blog I have shared some references from apple documents.
Swift UI Logo
We will learn it by examples. First of all let’s start with simple UI.

Read more