iOS 18.2 new features you can test for yourself on Your iPhone first

iOS 18.2 new features

This is a list of what’s new in iPhones running iOS 18.2. iPhone using iOS 18.2 Apple Intelligence is certainly the most talked about feature in the case of iOS 18.2, the most recent version of the Apple iPhone software. However, the list of new features isn’t just limited to Image Playground, Genmoji and other AI-powered tools … Read more

How do you make a line chart and bar chart graph in SwiftUI?

How do you make a line chart and bar chart graph in SwiftUI

Hello, in this blog post, we’ll learn how to make the Line Chart with Swift charts with the SwiftUI. Follow along on this blog and enjoy . In the end of that blog, you will find the entire code. Simple line chart & Chart Chart graph in SwiftUI The first step is to start by importing your chart. Create an Enum name LineChartType. We will then use that type … Read more

Build a Compass app with SwiftUI

Build a Compass app with SwiftUI

In this iOS tutorial, we will be exploring how to build a compass app using SwiftUI in Swift programming language. Although the SwiftUI code for this app is only around 100 lines, it was quite challenging to develop and took much longer than expected. Join us on this coding journey as we learn, share, and … Read more

How to Make a QR Code or Barcode Scanner in SwiftUI

How to Make a QR Code or Barcode Scanner in SwiftUI

Thanks to iOS 16 and Apple’s DataScanner API, building a QR Code or Barcode Scanner in SwiftUI is now a breeze! In this tutorial, we’ll guide you through the simple steps of using the DataScannerViewController, UIViewControllerRepresentable, and data passing between SwiftUI and UIKit. And the best part? You’ll achieve all this with just a minimal … Read more

How to set TextField keyboard type in iOS SwiftUI

TextField keyboard type

SwiftUI’s TextField lets you select the keyboard type best suited for what input you’re expecting from users. This makes the user experience much more seamless. This post will examine various keyboard types and how they can be implemented into SwiftUI. What Is Keyboard Type? Keyboard type refers to the layout and features of a virtual … Read more

Categories iOS

How to create TextField validation that only accepts numbers, characters, special characters

How to create TextField validation that only accepts numbers, characters, special characters

create a TextField input validation for your iOS App to block user to enter only number,  only character. Also you can mange alphanumerical to enter both only not accepting special character. Like you want to create a form in your App and you need to add validation at user input time to filter user input … Read more

How to make a splash screen in ios swiftui tutorial

splash screen in ios swift tutorial

what is a splash screen Splash screen is the first screen of your App to interact with to the user. It is typically utilized to greet the user as the app loads initial information. The screen is usually adorned with the logo of the app and/or its name. The purpose of this post is to show we’ll … Read more