Post

Replies

Boosts

Views

Activity

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
Reply to Performance of SwiftUI List
Could you show the exact code of LogDetail(log:) To check if it is the issue, test with the following change: 1og in NavigationLink(destination: Text("same destination")) I found this article that shows the problem is common with large listes: https://fatbobman.com/en/posts/optimize_the_response_efficiency_of_list/ Hope you will find solution in it.
Topic: UI Frameworks SubTopic: SwiftUI
Aug ’24
Reply to swift: documentation for proper import name?
If you search for Notifications in the doc, you will get a suggested reference with a link to User notifications. Other items in the list point to 2 frameworks: import UserNotifications import UserNotificationsUI It may not be necessary to import. Do you get an error message ? If so, you may have to declare the class as conforming to UNUserNotificationCenterDelegate You can file a bug report against documentation.
Topic: Programming Languages SubTopic: Swift Tags:
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… 😉
Replies
Boosts
Views
Activity
Aug ’24
Reply to The incorrect work of print function in any browser
That's a question about use of apps, not about its development. So it is not for this forum. You'd better post on support community forum: https://discussions.apple.com/welcome You can also file a bug report in Feedback Assistant: https://feedbackassistant.apple.com
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’24
Reply to Develop in Swift - SwiftUI update?
Could this Apple tutorial help ? https://developer.apple.com/documentation/visionos
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Aug ’24
Reply to App Store Connect - Trends sections is not working
The message is general, to all users. And it is very clear: data are not uptodate. It happens from time to time and usually lasts a week or so.
Replies
Boosts
Views
Activity
Aug ’24
Reply to Convert view to PDF
Where in code does it crash ? What is the error message if any (crashlog) ?
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
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.
Replies
Boosts
Views
Activity
Aug ’24
Reply to New Subscribe on Apple Developer Program
welcome to the forum. Hard to say with this limited information. Could you check against this checklist ? Have you done exactly all the steps ? If not enough, could you show a screenshot of your submission form before getting the error message ? In the screenshot you should partially hide sensitive information.
Replies
Boosts
Views
Activity
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.
Replies
Boosts
Views
Activity
Aug ’24
Reply to UIScrollView Incorrectly Scrolls When Selecting Text in UITextView on iOS 15
Why do you disable the scroll of the textView ? textView.isScrollEnabled = false But it is not a very good idea to embed a TextView (scrollView) inside a ScrollView: touch events may mix up, as explained here: https://stackoverflow.com/questions/27652334/uitextview-inside-uiscrollview-with-autolayout
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Aug ’24
Reply to This app is marketed as being able to bypass geo-restrictions or content limitations.
@Anumundu, what dark paw said is very important. You should take care not to try to walk around guidelines and fool reviewer in a manner that could be seen as a breach of code of conduct (guideline 5.6). That could lead to a termination of your account. So play it open and fair with reviewer.
Replies
Boosts
Views
Activity
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:
Replies
Boosts
Views
Activity
Aug ’24
Reply to Battery health issue
Welcome to the forum. But that's not a question for this forum, which is intended to help developers in their apps development. You'd better post on the official support community: https://discussions.apple.com/welcome
Replies
Boosts
Views
Activity
Aug ’24
Reply to Performance of SwiftUI List
Could you show the exact code of LogDetail(log:) To check if it is the issue, test with the following change: 1og in NavigationLink(destination: Text("same destination")) I found this article that shows the problem is common with large listes: https://fatbobman.com/en/posts/optimize_the_response_efficiency_of_list/ Hope you will find solution in it.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Aug ’24
Reply to Unable to debug app on phone
Did you try to de-register and then re-register the iPhone on Xcode ?
Replies
Boosts
Views
Activity
Aug ’24
Reply to swift: documentation for proper import name?
If you search for Notifications in the doc, you will get a suggested reference with a link to User notifications. Other items in the list point to 2 frameworks: import UserNotifications import UserNotificationsUI It may not be necessary to import. Do you get an error message ? If so, you may have to declare the class as conforming to UNUserNotificationCenterDelegate You can file a bug report against documentation.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Aug ’24