Iosgamedevallisaa.hashnode.dev·Aug 18, 2023A tutorial on using the appuploader tool to publish certificates and descriptive filesPreviously, I developed an application using the AppCan platform that can generate both Android and Apple versions simultaneously. I wanted to try putting this application on the App Store, so I borrowed an Apple developer account from my classmate, ...Discussiosdevx
iOSdeviosdwv.hashnode.dev·Aug 18, 2023Picture and text introduction to the process of packaging and uploading IOS APP under Windows systemNowadays, many partners are developing applications across platforms, and some children's shoes do not have Macs. This article will introduce how to directly launch apps in the Windows system environment, without having to engage in virtual machines ...Discuss·38 readsiosdevx
Xavierxavier7t.com·Jul 1, 2023Objective-C & SwiftUI IntegrationIntroduction In the world of iOS app development, SwiftUI has gained significant popularity due to its modern, declarative approach to building user interfaces. However, there are times when you may need to leverage existing Objective-C view controll...Discuss·267 readsiOS
Xavierxavier7t.com·Jun 5, 2023Lazy Grid in SwiftUIHey everyone, happy WWDC 2023! In today’s post, we’re going to take a look at LazyVGrid in SwiftUI and create a custom calendar view with it. As you can tell from the cover, this calendar view will display the weekdays in the title for each month and...Discuss·404 readsiOS
Xavierxavier7t.com·May 28, 2023Enumerated Array in SwiftUIEnumerated Array in SwiftUI As you can see from the cover, in today’s post, I’m going to demonstrate how to create a dynamic list of transactions in SwiftUI using an enumerated array to make background color alternating. A ForEach would do the trick ...Discuss·239 readsiOS
Xavierxavier7t.com·May 5, 2023Section and Navigation Link in SwiftUIThe Settings app is an essential part of the iOS ecosystem, allowing users to configure their devices and manage their apps. With SwiftUI, it's easier than ever to create beautiful and intuitive user interfaces for iOS apps. In this blog post, we'll ...Discuss·532 readsiOS
Xavierxavier7t.com·May 4, 2023Rotation Effect and Animation in SwiftUILoading data is an essential task in any app that communicates with a server or performs intensive computations. While the data is loading, it's a good practice to show a loading indicator or an animated view to provide feedback to the user and preve...Discuss·688 readsiOS
Xavierxavier7t.com·May 3, 2023MVVM in SwiftUIModel-View-ViewModel (MVVM) is an architectural pattern that has gained a lot of popularity in recent years, especially in the context of developing mobile applications. With the release of SwiftUI, Apple's new framework for building user interfaces,...Discuss·10 likes·295 readsiOS
Xavierxavier7t.com·May 2, 20232 Ways to format decimal numbers in SwiftIn programming, formatting numbers is an important task that helps to present data in a more readable and user-friendly way. In Swift, there are several ways to format decimal places, including using string interpolation, NSNumberFormatter, and the D...Discuss·1.1K readsSwift
Xavierxavier7t.com·Apr 29, 2023EnvironmentObject in SwiftUIIn SwiftUI, Environment Object is a powerful tool for managing shared data across multiple views in your app. It allows you to create an object that can be accessed by any view in your app hierarchy and provides a convenient way to update and share d...Discuss·398 readsiOS