Post

Replies

Boosts

Views

Activity

Reply to want start my journey
There are a lot of tutorials in Apple's Library. Get there, search for Swift. You may start with "Intro to app development with Swift". It may be based on an older version of Xcode, but the basics are still the same. If you want to start with SwiftUI, you could look here: https://developer.apple.com/tutorials/app-dev-training/getting-started-with-scrumdinger
Jun ’24
Reply to Iphone SE2 IOS18 crashed
Did you try this ? https://support.apple.com/en-us/118106 Make sure that your Mac is up to date. If you're using a PC, make sure you have the latest version of the Apple Devices app or iTunes. Connect your device to your computer with a USB cable. Open the Finder on your Mac, or open the Apple Devices app on your PC. If your PC doesn't have the Apple Devices app, or your Mac is using macOS Mojave or earlier, open iTunes instead. Keep your device connected and wait until the Connect to computer screen appears. iPhone 8 or later, including iPhone SE (2nd generation and later): Press and quickly release the volume up button. Press and quickly release the volume down button. Then, press and hold the side button until you see the Connect to computer screen. An animation of an iPhone with arrows pointing to the Volume Up button, then to the Volume Down button, and then to the side button.
Topic: App & System Services SubTopic: General Tags:
Jun ’24
Reply to Hiding chevron from list, SwiftUI
Here is a way to mimic a List without chevron, with a ScrollView: ScrollView(.vertical, showsIndicators: true) { ForEach(0..<15) { index in HStack { Spacer() NavigationLink(destination: DestinationView(item: index)) { Text("Navigate \(index) to View 1") } // Text(">") // This would mimic a List's chevron Spacer() } .padding(.vertical, 5) } } .navigationBarTitle("Navigation Links") } } } struct DestinationView: View { var item: Int var body: some View { Text("Destination View for item \(item)") .navigationBarTitle("View", displayMode: .inline) } }
Topic: UI Frameworks SubTopic: SwiftUI
Jun ’24
Reply to The Xcode Installer says I need an version of OS X lower than I have
Welcome to the forum. The version reference (1015.7) you give is a bit bizarre. And you likely misread it. You probably have Catalina which is 10.15.7 (the latest MacOS 10 version). But it is much older than MacOS 14. Hence the message you get is logical. Which Mac have you got, to see if it can support MacOS 14 ?
Replies
Boosts
Views
Activity
Jun ’24
Reply to Downgrade IOS 18 vers 17 sans perte de données
Dans un tel cas, je ne fierais pas à un auto sur Internet… Mais je contacterais le support (en demandant un contact téléphone). Autre option: attendre la release iOS 18, charger les prochaines betas et vivre avec les bugs en attendant. PS: c'est toujours risqué d'installer des betas sur un iPhone de travail.
Replies
Boosts
Views
Activity
Jun ’24
Reply to Call Api when user kill the app
Did you try to implement it in AppDelegate function: func applicationWillTerminate(_ application: UIApplication) { // call delete session api }
Replies
Boosts
Views
Activity
Jun ’24
Reply to Asset validation failed (11)
Is it an iOS app ? It seems that SCDynamicStoreCreate is (was?) not available for iOS. Could it be the reason ? https://stackoverflow.com/questions/42998035/scdynamicstorecreate-is-unavailable-not-available-on-ios
Replies
Boosts
Views
Activity
Jun ’24
Reply to How to do a postorder enumeration of a directory?
Could this help: https://stackoverflow.com/questions/34440512/enumerating-directories-iteratively-in-postorder or at least give a direction for searching ?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’24
Reply to API naming consistency
You should file a bug report. It may ring a bell. Who knows.
Replies
Boosts
Views
Activity
Jun ’24
Reply to White text on white background
Almost all of my views have the background color set to "System background color" Does the problem also occur in those views ?   is in dark mode, which I don't use what do you mean ? what do you do to manage dark/light mode ?
Topic: UI Frameworks SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’24
Reply to View appears transparent over tableView, whatever alpha channel
Problem solved programmatically. So I close the thread.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jun ’24
Reply to want start my journey
There are a lot of tutorials in Apple's Library. Get there, search for Swift. You may start with "Intro to app development with Swift". It may be based on an older version of Xcode, but the basics are still the same. If you want to start with SwiftUI, you could look here: https://developer.apple.com/tutorials/app-dev-training/getting-started-with-scrumdinger
Replies
Boosts
Views
Activity
Jun ’24
Reply to Iphone SE2 IOS18 crashed
Did you try this ? https://support.apple.com/en-us/118106 Make sure that your Mac is up to date. If you're using a PC, make sure you have the latest version of the Apple Devices app or iTunes. Connect your device to your computer with a USB cable. Open the Finder on your Mac, or open the Apple Devices app on your PC. If your PC doesn't have the Apple Devices app, or your Mac is using macOS Mojave or earlier, open iTunes instead. Keep your device connected and wait until the Connect to computer screen appears. iPhone 8 or later, including iPhone SE (2nd generation and later): Press and quickly release the volume up button. Press and quickly release the volume down button. Then, press and hold the side button until you see the Connect to computer screen. An animation of an iPhone with arrows pointing to the Volume Up button, then to the Volume Down button, and then to the side button.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’24
Reply to Hiding chevron from list, SwiftUI
Here is a way to mimic a List without chevron, with a ScrollView: ScrollView(.vertical, showsIndicators: true) { ForEach(0..<15) { index in HStack { Spacer() NavigationLink(destination: DestinationView(item: index)) { Text("Navigate \(index) to View 1") } // Text(">") // This would mimic a List's chevron Spacer() } .padding(.vertical, 5) } } .navigationBarTitle("Navigation Links") } } } struct DestinationView: View { var item: Int var body: some View { Text("Destination View for item \(item)") .navigationBarTitle("View", displayMode: .inline) } }
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Jun ’24
Reply to Iphone repeatedly crashes on IOS 18 dev beta.
Which iPhone model do you have ? Hard to help on betas. Best is to return to release and wait for iOS 18 release.
Replies
Boosts
Views
Activity
Jun ’24
Reply to View with 2 labels of dynamic height
IMHO, even though it is possible to do this with constraints, I fear it is too complex. If I understand what you want to achieve, I would position the labels manually in their View. And call needsToUpdate when the label length changes.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jun ’24
Reply to Apple Developer's Age of majority conflict!
I see this message Which message ? is it 'Apple Developer's Age of majority conflict!' What is the exact error message you receive, at what step of registration ? You may read this: https://discussions.apple.com/thread/6441831?sortBy=best Are you sure rejection is due to age and not another issue ?
Replies
Boosts
Views
Activity
Jun ’24
Reply to Rejected with Guideline 2.5.1 & NEVPNManager APIs
I don't think you may find a permission for this. You have to use the official VPN APIs as told in the reviewer's answer. Good continuation.
Replies
Boosts
Views
Activity
Jun ’24