This is a dedicated space for developers to connect, share ideas, collaborate, and ask questions. Introduce yourself, network with other developers, and join us in fostering a supportive community.

All subtopics

Post

Replies

Boosts

Views

Activity

How to ensure current SKScene has fully loaded before engaging it with the GamePad Controller?
How to ensure current SKScene has fully loaded before engaging it with the GamePad Controller? The problem is this = when stopping sound is involved when I do switch SKScenes, if I press the buttons of the GamePad Controller (which cycle thru these other SKScenes) too fast, the movement of the Game Pieces fails to resume when I return to the Game Scene after the above cycling. This problem occurs only with the os(tvOS) version, but not with the iPad version. And the reason for this distinction is that each SKScene for the iPad has to fully load due to the fact that the button I press to switch SKScenes is at the top-left corner of the iPad -- so, by definition, by the time I have access to this button, the current SKScene has fully loaded. By definition, there is no such button for os(tvOS). Given this button’s absence, I believe I need the Swift version of jQuery’s $(document).ready (function() {. Any help will be appreciated to the rafters ...
2
0
182
1w
Can I pay for more than one Apple Developer Program Enrollment with one Visa card?
Hello dear forum members and Apple Team! I paid for Enrollment membership in Apple Developer Program 8 months ago and this account is active. My question is: can I use the visa card I used in the first account I opened to pay for another Enrollment on the Apple Developer Program platform? My second question: I filled in all the required information to become a member of the Apple Developer Program platform and completed the last stage of payment, but my visa card has not been charged. And I haven't received any message for this membership application, what should I do? Thanks in advance for the answers.
0
0
139
1w
Attempt to present * on * from * while a presentation is in progress
Hi I'm new to Swiftui. I want to show a sheet and pass a var to it. In the case below when I tap on a list view it will popup then disappear. But subsequent taps will work as intended. Main view: struct ContentView: View { @State private var selectedMonth = 1 @State private var selectedYear = "2024" let months = [1,2,3,4,5,6,7,8,9,10,11,12] @State private var isShowing = false var body: some View { List { ForEach (months, id: \.self) { month in HStack { ViewList(month: month, year: selectedYear) } .onTapGesture { isShowing = true selectedMonth = month } .sheet(isPresented: $isShowing){ PopupView(month: selectedMonth, year: selectedYear) .presentationDetents([.large]) } } } .listRowSpacing(2) .listStyle(.grouped) } } ViewList: struct ViewList: View { var month: Int var year: String @State private var selectedMonthText = "Jan" var body: some View { VStack (alignment: .leading) { Text(selectedMonthText + " / " + year) .font(.headline) } .onAppear { switch month { case 01: selectedMonthText = "Jan" case 02: selectedMonthText = "Feb" case 03: selectedMonthText = "Mar" case 04: selectedMonthText = "Apr" case 05: selectedMonthText = "May" case 06: selectedMonthText = "Jun" case 07: selectedMonthText = "Jul" case 08: selectedMonthText = "Aug" case 09: selectedMonthText = "Sep" case 10: selectedMonthText = "Oct" case 11: selectedMonthText = "Nov" case 12: selectedMonthText = "Dec" default: selectedMonthText = "All" } } } } Then my popup: struct PopupView: View { @Environment(\.dismiss) var dismiss var month: Int var year: String @State private var selectedMonthText = "Jan" @State private var imageText = "plus" @State private var items = ["Cat", "Dog", "Bird", "Snake"] var body: some View { Button("Dismiss"){ dismiss() } Text(selectedMonthText + " / " + year) List { ForEach(items, id: \.self) {item in HStack { Text(item) Text("Fed on: ") Text(selectedMonthText) } } } .listRowSpacing(0) .listStyle(.inset) .onAppear { switch month { case 01: selectedMonthText = "Jan" case 02: selectedMonthText = "Feb" case 03: selectedMonthText = "Mar" case 04: selectedMonthText = "Apr" case 05: selectedMonthText = "May" case 06: selectedMonthText = "Jun" case 07: selectedMonthText = "Jul" case 08: selectedMonthText = "Aug" case 09: selectedMonthText = "Sep" case 10: selectedMonthText = "Oct" case 11: selectedMonthText = "Nov" case 12: selectedMonthText = "Dec" default: selectedMonthText = "All" } } } }
2
0
176
1w
Revies: Guideline 2.3 - Performance - Accurate Metadata
How Can I do for this?At the second point in the next step, does it mean I should keep the accurate metadata as same as current fortune telling? or change the accurate to the old type 'informational app'? Help, help~~~~ Guideline 2.3 - Performance - Accurate Metadata The app concept was drastically changed since the last approval. Specifically, the app was previously approved as a informational app. However, the app is now a fortune telling app. Note that changing an existing app into an entirely different app is not appropriate, as it creates a poor experience for users who have already downloaded the app. Next Steps If you wish to submit a new app, it would be appropriate to create a new app record in App Store Connect. If you are updating the branding on your app, it would be appropriate to do so in accordance with the accurate metadata requirements in guideline 2.3.
0
0
78
1w
"nw_socket_internal_error" crash occur in iOS 17.4.1 and 17.5.1
New crash occur in iOS 17.4.1 and 17.5.1, is there a resolution for this crash ? Thread 77 name: Thread 77 Crashed: 0 Network 0x000000018f2218a8 nw_socket_internal_error(nw_socket*, int) + 72 (protocol_socket.cpp:373) 1 Network 0x000000018ec1570c invocation function for block in nw_socket_init_socket_event_source(nw_socket*, unsigned int) + 4000 (protocol_socket.cpp:4351) 2 libdispatch.dylib 0x0000000196405dd4 _dispatch_client_callout + 20 (object.m:576) 3 libdispatch.dylib 0x00000001964092d8 _dispatch_continuation_pop + 600 (queue.c:321) 4 libdispatch.dylib 0x000000019641d1c8 _dispatch_source_latch_and_call + 420 (source.c:596) 5 libdispatch.dylib 0x000000019641bd8c _dispatch_source_invoke + 832 (source.c:961) 6 libdispatch.dylib 0x000000019640f284 _dispatch_workloop_invoke + 1756 (queue.c:4570) 7 libdispatch.dylib 0x0000000196418cb4 _dispatch_root_queue_drain_deferred_wlh + 288 (queue.c:6998) 8 libdispatch.dylib 0x0000000196418528 _dispatch_workloop_worker_thread + 404 (queue.c:6592) 9 libsystem_pthread.dylib 0x00000001eb3b7934 _pthread_wqthread + 288 (pthread.c:2696) 10 libsystem_pthread.dylib 0x00000001eb3b40cc start_wqthread + 8 (:-1)
1
0
103
1w
Inconsistent User Reviews in Admin Panel: Same Content, Different IDs and Dates Issue
Issue: I am facing a situation where multiple reviews from some users display the same titles, body, and author names in my admin panel, but they have different review IDs and review submission dates. For example, User A might have a review titled "Great App!" with the same content and author name, but different review IDs (123 and 456) and submission dates (June 1st and June 15th). This inconsistency appears when users update their reviews in the app or when reviews are deleted and then resubmitted through the App Store. Reason: When users update their feedback or delete and resubmit their reviews in the app or through the App Store, each action creates a new review entry in our database due to the different review IDs assigned by the platform, leading to these discrepancies. Technical Details: Fetching Reviews: I fetch the latest reviews from the App Store using a scheduled task that retrieves up to 200 reviews per hour. These reviews are retrieved using the App Store Connect API: https://api.appstoreconnect.apple.com/v1/apps/{id}/customerReviews?include=response&sort=-createdDate&limit=200. Admin Panel Technology: My admin panel is developed using the Laravel framework (PHP). Our Concern: I want to ensure that our database stores only unique reviews and that our admin panel displays only unique reviews to avoid confusion and maintain data integrity. I'm seeking guidance on how to handle this scenario correctly within my admin panel to ensure accurate representation of user reviews. Any insights or best practices on how to manage and display user reviews under these circumstances would be greatly appreciated. Thank you.
0
0
144
1w
Install Sequoia Stuck - I'm exhausted
HI, for my needs I have to install Sequoia on an external disk. From the first beta, I was able to install it without problems and I was also very happy because everything works perfectly and I could verify my apps with XCode. Unfortunately, a few days the external disk decided to abandon me and after purchasing a new one I tried installing Sequoia on the external disk again but this time I started from beta 2. The problem is that I can't install it. It tells me that there are 28 minutes left but after a few minutes the disc is ejected and even if I try to start with the power button, it doesn't start... I'm exhausted....I don't understand what I'm doing wrong.... I also tried to download the Beta 1 version but unfortunately without success, in fact I must say that it's even worse because it tells me that there is no space on the external disk and I don't know what to do. Do you have any ideas? Today I believe BETA 3 will be released and I will try to install that version but I am skeptical that I will be able to install. I add the screenshot and the error log Installer Log 8-Jul-2024.txt
1
0
244
1w
iOS 18 and iPhone 12 battery
Hi ! On my iPhone 12 Pro with iOS 18, I don't know why but I have problems : The battery go fast down I can't charge full, I can only charge 80% of the battery The % are not realistic and funny I show my battery level 30%, I want to change the song and what 18% ??? This night I downgrade to iOS 17.5.1 and the battery is fine again I can charge to 100%. A bug on iOS 18 ???
2
1
189
1w
Display past temperature data for cities in Weather app
Hello Apple team, I would like to request a feature to display the past temperature data (e.g., last 7 days) for each place in the Weather app(Especially past 24 hours of data for any given city ). Just like how it shows future 7-10 days of data. This would allow users to quickly view temperature trends and patterns for users like us to re-member how that day was like,etc,etc. Please consider adding a 'Past Weather' section or a graph that shows the temperature fluctuations over the past week. Thank you for considering my request!
1
0
86
1w
Enhance Weather app with Celsius/Fahrenheit conversion options and dual display
I would like to request two enhancements to the Weather app: Add a Celsius/Fahrenheit conversion option directly on the home page, rather than requiring users to access it through the three-dot menu. Consider displaying both Celsius and Fahrenheit scales side by side, without requiring users to choose a conversion option(only if its feasible for your team). This would be particularly helpful for users who are familiar with both scales, such as Asians living in America. Thank you for considering my request!
1
0
107
1w
Folder-level search option in Notes app
Hello Apple team, I would like to request a feature to include a search option within each folder in the Notes app, both on MacBook and iPhone. Currently, the global search function searches all notes, which can be overwhelming when dealing with a large number of notes (I have over 700+ notes). A folder-level search option would allow users to quickly find specific notes within a designated folder, making organization and retrieval more efficient. This feature would be a valuable addition to the Notes app, and I believe it would benefit many users who rely on the app for note-taking and organization. Thank you for considering my request!" Additionally, you can also mention the benefits of this feature, such as: Improved note organization and management Enhanced productivity and time-saving Better user experience and satisfaction By providing clear and concise feedback, you can help Apple understand the value of this feature and consider implementing it in future updates.
1
0
104
1w
List Closure not displaying retrieved data in Simulator UI
I have backend API caller file that retrieves and displays unwrapped JSON data via URLRequest(). All the data is printed to my console when I build the project but it's not being displayed in the actual UI of my iOS simulator. I have a class in my ContentView that updates the UI and filters the extracted fields shown here below: class NotionCall: ObservableObject { @Published var extractedContent: [BlockBody.Block] = [] func makeAPIRequest() { makeRequest { results in let extractedData = results.map { block -> BlockBody.Block in var extractedBlock = block extractedBlock.ExtractedFields = block.paragraph?.textFields.compactMap { textField in textField.PlainText ?? textField.RichText ?? textField.content //iterate over PlainText, RichText, and Content fields and return the non nill values } ?? [] //validate objects even if they are nil return extractedBlock } DispatchQueue.main.async { self.extractedContent = extractedData } } } } @StateObject var NotionCaller = NotionCall() //manage lifecycle of instance And then below here is my SwiftUI structure that contains List(NotionCaller.extractedContent) { block in ForEach(block.ExtractedFields, id: \.self) { field in Text(field) meant to display the extracted data to the UI: var body: some View { NavigationStack { ZStack { List(NotionCaller.extractedContent) { block in ForEach(block.ExtractedFields, id: \.self) { field in Text(field) } } ZStack { Color(hex: "#f9f9f9") .ignoresSafeArea() VStack { TextField(" Search keywords", text: $searchKeywords) //change font later .frame(height: 48) .overlay(RoundedRectangle(cornerRadius: 30).strokeBorder(style: StrokeStyle())) .foregroundColor(.white) .background(.white) .cornerRadius(30) .padding() .scaledToFit() .frame(maxHeight: .infinity, alignment: .top) } VStack { Spacer() Divider() .padding() HStack { Button(action: { //add functionality later }) { Image("menuButton") .frame(alignment: .bottom) .padding(.horizontal, 42) Spacer() } HStack { Button(action: { //add functionality later }) { Image("notificationButton") .frame(alignment: .leading) .padding(.leading, 30) Spacer() } } HStack { Button(action: { }) { Image("notionImportButton") .frame( alignment: .trailing) .padding(.horizontal) .padding(.horizontal) } } } .onAppear { NotionCaller.makeAPIRequest() } } } } } } }
4
0
164
1w
iMessage
iMessage has flipped to SMS randomly, I have tried everything short of actually going to Apple and or resetting my phone completely. I am on the iOS 18 beta, I don’t think this has anything to do with it, but I could be wrong. Somebody feel free to help, thanks
0
0
149
6d
Problem with Custom Email Domain
I'm trying to create a custom domain email in iCloud, but an error message appears stating that the email cannot be created. As the email was already associated with an AppleID, the system did not allow me to associate the email with my account. So I deleted the AppleID with the associated email, but it still won't allow it. Does anyone know how I can do this? Is there any way to clear this email on Apple's database?
0
0
112
5d
Postfunktion und Post Verfassung, Ansichtsdesign
I'm looking for someone who can make me such a design. I just want this large text to work as a preview for pictures and videos at the top and the comment field at the bottom has the same design as in the picture and that it is together with the keyboard and that should all be only for the post-constitution. Maybe someone can do something like in this picture with exactly the same design and in the comment field there should also be this small Siri icon from Apple Intelligence. It doesn't have to work, but it just looks chic. In addition, I would like that on the main page where post is displayed like on TikTok and Instagram, is with a 3-D floating postcard and I have a sketch (see picture)
0
0
142
5d