Questions tagged [swiftui]

Creating user interfaces for Apple platforms has never been easier with SwiftUI. This innovative technology allows developers to build UIs for any device using a single set of tools and APIs. With its declarative Swift syntax, programming becomes more intuitive and efficient. By integrating seamlessly with Xcode design tools, keeping code and design synchronized is a breeze. SwiftUI also offers automatic support for Dynamic Type, Dark Mode, localization, and accessibility. Have questions about working with SwiftUI on different platforms? Use this tag for assistance and guidance.

Tips for showcasing API's JSON data in SwiftUI?

I have received JSON data from an API and I need to display a specific value from it as text. Here is a snippet of the JSON data: { "d": "2019-09-20", "v": 56.62 }, { "d": "2019-09-23", "v": 56.93 } To ha ...

Finding the Index of Parsed JSON Data in Swift

I'm struggling with creating a loop to check if an employee can perform a specific service. It seems that the code I wrote for accessing the employee's services is not working. The employee data is loaded as JSON into EmployeesData. I believe I n ...

Tips for establishing control when retrieving the JSON information

I have encountered a challenge while developing a currency converter application. The issue I am facing is related to the order of data. My app fetches information from two JSON files - one containing prices and the other containing full names of currencie ...

Swift Network Manager: Streamlining Connectivity Solutions

My current project involves creating a CRM app, and to do this, I have set up a database on my Raspberry Pi. Using PHP, I generated JSON results accessible through a URL. I've also developed a Network Manager in Swift for this project. However, I kee ...