Post

Replies

Boosts

Views

Activity

Reply to App Rejected for Minimal Functionality
Sorry to say, but rejection here appears a very sound decision. Imagine the appStore populated with a lot of similar apps… what a frustration for users. Now, if you change your app to become really an educational app, showing examples of what could be a "complex" UI and a minimalist that perform the same task, that would provide some user value and may be pass the review. Good luck.
Aug ’24
Reply to Bug description: App forze on the splash screen
We don't know the tests that are done in review. So no way to reproduce, simulate or whatever. There is probably a problem in your code, you have to find where and what. What is the error report you get. Is is about a crash, a performance issue, a problem with your metadata… Without it, impossible to help. If I understand the thread title correctly(it would be better to detail in post), the app freezes on splash screen. Are you loading data from network during app launching ? Or anything else that can take a long time ?
Aug ’24
Reply to Apple Intelligence- US Only
That's not totally correct. What we read is that at initial rollout, some functions will be available in US only; but will be available later in other countries. Delay may depend on compliance issues with local regulations (Europe and China notably) or the fact that it is not yet localized. Get details here. https://www.macrumors.com/2024/06/21/apple-intelligence-europe-delay/ https://www.macrumors.com/how-to/enable-apple-intelligence-outside-us/ PS: not sure it is a strong enough reason for emigration… 😉
Aug ’24
Reply to how to use swift
What do you want to learn ? the language itself ? How to develop an app ? There are many (free) tutorials available from Apple: all references (a lot) here. https://developer.apple.com/pathways/ to learn Swift: you can search in Apple Library: App development with Swift To develop app: Intro to app development with Swift To use SwiftUI to develop app (in Swift): https://developer.apple.com/tutorials/app-dev-training/getting-started-with-scrumdinger Good learning.
Aug ’24
Reply to is it true that xcode 15 apps won't compile in xcode 16?
NO. I have several apps that were developed in various versions of Xcode. And compiled on Xcode 15, they compile without issue on Xcode 16. What could happen is that you get some warnings that some API will be obsoleted. But that's something very common that any serious developer knows how to solve easily. So your developer may be trying to fool you, just to ask for some extra cost or it did something really weird in its code. My advice: Ask him/her to send you a screenshot with the error and the involved code when trying to compile on Xcode 16. And post it on the forum.
Aug ’24
Reply to Cannot clear TextField when typing in a new value
Your explanations are a bit hard to follow… I cannot understand how all the objects relate to each others. What happens ? When you have 6 in Reps and type a 7 you get 67 ? Is that it ? Where do you expect the TextField to be cleared? Did you try to do it here, with onTap ? VStack(alignment: .leading) { Text("Reps") .foregroundStyle(.gray) .font(.subheadline) TextField("\(set.reps)", value: $set.reps,formatter:Formatter.valueFormatter) .keyboardType(.decimalPad) .onTapGesture { set.reps = 0 } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Aug ’24