Tag

swiftui

9 stories
J
Joynal Abedin

What's new Xcode 27.0 ?

There are five things we discuss today new in Xcode 27 Workspace Projects & files Intelligence Running apps Refining apps Workspace: Toolbar Themes Issues You can customize full toolbar in appearance. Xc...

5
What's new Xcode 27.0 ?
J
Joynal Abedin

UI Test in SwiftUI - Part-1

Step_01: Select your Xcode and in iOS target give project name like \"UITestAppDemo\" and also turn on the inlcude Test checkbox. Step_02: Replace ContentView.Swift file code by below code: struct ContentView: Vie...

4
J
Joynal Abedin

Gauge Style in SwiftUI

In iOS 16, SwiftUI introduces a new view called Gauge for displaying progress. You can actually use it to show values within a range. Style_01: In the most basic form, a gauge has a default range from 0 to 1. If we set ...

3
J
Joynal Abedin

News Widget by SwiftUI

Step_01: Get the news api by login this website: https://newsapi.orgThen you will get same this api \"09510d0f4f3641258f6f703aa2ef9611\"After get the api key, now hit the api in Postman and you will see the JSON response...

5
J
Joynal Abedin

Add Home Screen Quick Actions in SwiftUI

On the Home screen of a device running iOS 13 or later, apps can display Home Screen quick actions when users touch and hold the app icon (on a 3D Touch device, users press briefly on the icon). many apps are coming with...

5
J
Joynal Abedin

Data Transfer iPhone To Watch using SwiftUI

Connecting your Phone to your Watch to send data has never been easier! Follow this easy step-by-step guide, to discover how to pair them as well as what are the most common errors you might encounter. For the porpouse ...

3
J
Joynal Abedin

Activity Rings in WatchOS using SwiftUI

We will make this below UI View. Step_01: Click Xcode then choose Create New Project... Step_02: Then select from WatchOS segment App. If you are already running Xcode, then choose File->New->Project. Then clic...

3
J
Joynal Abedin

CRUD in SwiftUI

First of all, create your demo project then right click project file -> Select Data Model -> give name \"SubjectsContainer\" and finally tap Create Button. After create core data file next create Entity. For create en...

5
J
Joynal Abedin

AVSpeechSynthesizer in SwiftUI

An object that produces synthesized speech from text utterances and enables monitoring or controlling of ongoing speech. To speak some text, create an AVSpeechUtterance instance that contains the text and pass it to spe...

5