Hello,
Xcode 12 comes with great features! Simulator is also updated with new features. Let’s see in detail.
New Features
- Simulator can display a simulated device in full-screen mode, or tile its window alongside Xcode.

Technology Makes A Wonderful World
Hello,
Xcode 12 comes with great features! Simulator is also updated with new features. Let’s see in detail.
Hello Folks,
iOS 14 will come with too many new stuff for iOS Developers! Here, I am just exploring about new APIs of iOS 14. I get to know that there is new setup for the Launch Screen directly from the Info.plist file.
Just follow the simple steps posted here!
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!
Here, I found the solution for it!
Today, I just wake up and showing some twitter threads saying that the Crashlytics crash reporting is down due to a popular iOS SDK.
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.
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!
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.
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.Â
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:
1 2 |
Text("SwiftUI Animations") .rotation3DEffect(.degrees(45), axis: (x: 1, y: 0, z: 0)) |
Now we will create one button with rotating view by 3D Effect.
SwiftUI comes with easiest way of coding!
In SwiftUI they have given 3 types of gradients, you can easily show gradients on any of the view.
In gradient option we have to pass array of colors.