So, two months ago, I saw that a big conference was taking place in Bangalore which was named “Swift Bharat”. Also, I checked that the speaker lineup was so good. I was discussing it with my wife, as she is also an iOS Developer. She said yes yes, it’s your passion. You definitely have to ... Read more The post Swift Bharat The conference like never before in India appeared first on Ashish Kakkad…
Today there was Apple Event 2025 and it came up with new: AirPods Pro 3 New key features of AirPods Pro 3 are heart rate sensing during workouts and live translation to communicate across languages. Apple Watch New Apple Watch Series 11, SE 3 and Ultra 3 launched. New key features are track your sleep score and great ... Read more The post iPhone Air or Pro? All about Apple Event 2025 appeared…
On iOS 26, sliders now support tick marks with a TrackConfiguration. This configuration is used to set up the look and behavior for the slider. Here we can take example to limit speed slider to only 5 values. Let see how to set the track configuration. UISlider has a new property called trackConfiguration, by use ... Read more The post How to update your slider with new TrackConfiguration in…
We have already discussed about How to adopt Liquid Glass in UIButton in Swift? It s easy to adopt liquid glass design in any view with SwiftUI, I will add separate post for that. In this post let s discuss about create liquid glass for custom view in Swift. Apple just introduced Liquid Glass design in WWDC25 event. Here I ... Read more The post How to create Liquid glass for custom view in Swift?…
Have you seen WWDC25? There are many new hidden gems (frameworks) introduced. Here is list of frameworks with the basic use of it. Conclusion Let me know if you have any questions, comments, or feedback – via X (Twitter) or LinkedIn. Feel free to contact me and discuss what you are learning and developing. Happy Coding 🙂 The post Which are the new frameworks in Xcode 26? appeared first on Ashish…
Yesterday we have already discussed about How to create Liquid Glass Button in SwiftUI? I thought many of the developers (even me) using the UIKit. So, let s quickly check how to adopt Liquid Glass in UIButton. Apple just introduced Liquid Glass design in WWDC25 event. Here I am posting little snippet that how to apply liquid glass ... Read more The post How to adopt Liquid Glass in UIButton in…
How do you feel about liquid glass in iOS 19 iOS 26? Apple just introduced Liquid Glass design in today s WWDC25 event. Here I am posting little snippet that how to apply liquid glass style to Button in SwiftUI. SwiftUI s Button has new modifier buttonStyle(.glass) to incorporate the new Liquid Glass design. import SwiftUI struct ... Read more The post How to create Liquid Glass Button in SwiftUI?…
Hope you guys already know that we need to migrate to scene-based life cycle in near future. Below lines are written in this reference document provided by Apple. In iOS 18.4, iPadOS 18.4, Mac Catalyst 18.4, tvOS 18.4, visionOS 2.4 and later, UIKit logs the this message for apps that haven’t adopted the scene-based life-cycle. ... Read more The post iOS Lifecycle: Handling willEnterForeground in…
Xcode 16.3 removes the base template for std::char_traits: Xcode 16.3 Release Notes. This prevents to build iOS app with new Xcode 16.3. Also React Native developers are not able to compile the project in Xcode 16.3. Here is the detailed information that all developers should know. While Xcode 16.3 was released, here Apple marked deprecation as well ... Read more The post How Xcode 16.4 Beta fixes…
URLSession bug in Xcode 16.3? Here s a reliable workaround. If a URLSession is created as shown below and the code is running on the simulator, the network connection may be lost or the request may time out. This issue will affect all URLSession clients only in simulator. Here is workaround for this: Happy Coding 🙂 The post Xcode 16.3 URLSession Bug How to Fix and Prevent It appeared first on…