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

Need guidance regarding subscriptions
Hello fellow developers, I'm releasing my first app which I worked on for a whole year. And the only thing left to resolve on App Review, is this: **Guideline 3.1.2 - Business - Payments - Subscriptions Your app uses auto-renewable subscriptions, but it does not clearly describe what the user will receive for the price. Next Steps To resolve this issue, please revise the details of your subscription to clearly describe what the user will receive for the price.** I've tried multiple reiterations of how my app offers my two subscription options: Monthly or Annually. The whole app is only available through paid subscriptions. Meaning the user can only see the 'login' screen, 'FAQ' screen, 'create account' screen, and 'choose subscription' screen without a subscription. I'm attaching an image of the 'choose subscription' screen which is the problem of the app review. I've described the features the user will benefit from. And both subscriptions are visible with price and time period. Thank you for your attention and I'm looking forward to some much needed help. Sincerely, Empatia developer
1
0
146
6d
Conda uninstallation
Hello everyone, I installed anaconda day before yesterday on my mac but I believe somehow it has overwriiten the homebrew command which I used to install applications for development purpose. Right now even after uninstalling the anaconda application and removing everything related to it, I can still see the conda getting used in terminal. Can anyone please help me out on this, as to how can I remove the conda and bring in homebrew instead? I'm sharing the .zshrc screenshot for your reference.
2
0
68
6d
Call history problems after iOS 18 beta update
I've 14-Pro and I recently did update to "iOS 18 beta" using beta channel. However, the first I noticed was a deleted call-history... After several tries (using tips from forums), nothing showed up. Finally, I did reset all and reverted back to "17.5.1" and used the last iCloud backup (right before iOS 18 upgrade). Call history is back, however it is limited to "only 1-month" back in time! Why? I've 2 TB iCloud storage, why my call history is gone why? I keep backup of everything, and call-history contains very important details as well. Please help in getting back my data asap.
0
0
150
6d
WWDC 2024 notes by rtrouton
Notes from What's new in Privacy - Wednesday, June 12th 2024: https://forums.developer.apple.com/forums/thread/757223 Notes from What's new in device management - Thursday, June 13th 2024: https://forums.developer.apple.com/forums/thread/757219 Answered questions from Security lab session: https://forums.developer.apple.com/forums/thread/757230 Answered questions from Device Management lab session: https://forums.developer.apple.com/forums/thread/757232
0
1
181
6d
React Native build issue
Created an app in react native but it fails when trying to load the iOS application. The error block is too large to pull any useful debug information A summarised version is below 2024-06-28 12:57:20.459 xcodebuild[4719:53569] DVTAssertions: Warning in DVTiOSFrameworks/DTDeviceKitBase/DTDKRemoteDeviceData.m:408 Details: (null) deviceType from 7ecf611b5088b150372e24fd68af930bd7afd085 was NULL when -platform called. Object: <DTDKMobileDeviceToken: 0x7fce74c8d030> Method: -platform Thread: <NSThread: 0x7fce702108b0>{number = 3, name = (null)} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2024-06-28 12:57:20.712 xcodebuild[4719:53646] DVTAssertions: Warning in DVTiOSFrameworks/DTDeviceKitBase/DTDKRemoteDeviceData.m:408 Details: (null) deviceType from 7ecf611b5088b150372e24fd68af930bd7afd085 was NULL when -platform called. Object: <DTDKMobileDeviceToken: 0x7fce74c8d030> Method: -platform Thread: <NSThread: 0x7fce74cca640>{number = 10, name = (null)} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2024-06-28 12:57:20.817 xcodebuild[4719:53646] DVTAssertions: Warning in DVTiOSFrameworks/DTDeviceKitBase/DTDKRemoteDeviceData.m:408 Details: (null) deviceType from 7ecf611b5088b150372e24fd68af930bd7afd085 was NULL when -platform called. Object: <DTDKMobileDeviceToken: 0x7fce74c8d030> Method: -platform Thread: <NSThread: 0x7fce74cca640>{number = 10, name = (null)} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. ** BUILD FAILED ** The following build commands failed: PhaseScriptExecution [CP-User]\ Generate\ Specs /Users/mobiledev/Library/Developer/Xcode/DerivedData/ScanValidate-evohoxurqotysugjrrxkbpjnbrzn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-Codegen.build/Script-46EB2E0001BE30.sh (in target 'React-Codegen' from project 'Pods') (1 failure) Build logs written to /Users/mobiledev/Desktop/React-Native/ScanValidate/.expo/xcodebuild.log
1
0
134
6d
System Data taking 30G on iPhone 12
I’m on the iOS 18 Beta 1 with my iPhone 12. Since I only have 64 gigs on this phone, storage is sometimes an issue, though I can normally decrease it by getting rid of apps. As of downloading iOS 18, though, “System Data” is always taking half of my storage. Because of this, I am unable to update to a newer version of iOS 18. It also sometimes prevents me from taking photos, where I then have to restart my whole phone to get a little bit extra storage. Is there any way to update without the storage, or some way to decrease System Data?
0
0
149
6d
Casino app appears on appstore
Gambling apps use real money bets, somehow they get past apple censorship. I hope the management will handle this https://apps.apple.com/us/app/fluttering-letters/id6478998955 https://apps.apple.com/us/app/electrolink/id6476019696 https://apps.apple.com/us/app/green-glory-gathering/id6476551391 https://apps.apple.com/vn/app/runinmoutainfall/id6468037885?l=vi
0
0
99
4d
Tokenised text search in SwiftData help
The SwiftData predicate documentation says that it supports the contains(where:) sequence operation in addition to the contains(_:) string comparison but when I put them together in a predicate to try and perform a tokenised search I get a runtime error. Unsupported subquery collection expression type (NSInvalidArgumentException) I need to be able to search for items that contain at least one of the search tokens, this functionality is critical to my app. Any suggestions are appreciated. Also does anyone with experience with CoreData know if this is possible to do in CoreData with NSPredicate? import SwiftData @Model final class Item { var textString: String = "" init() {} } func search(tokens: Set<String>, context: ModelContext) throws -> [Item] { let predicate: Predicate<Item> = #Predicate { item in tokens.contains { token in item.textString.contains(token) } } let descriptor = FetchDescriptor(predicate: predicate) return try context.fetch(descriptor) }
2
1
132
4d
How to Restrict App from Moving to Background and Prompt User for Exit Confirmation?
Hello Apple Developer Forum, I'm working on an iOS app and need to implement a feature where the app asks the user for confirmation before moving to the background. Specifically, when the user tries to send the app to the background, I want to display an alert asking "Are you sure you want to exit?" and based on their response, either allow the app to move to the background or prevent it from doing so. Could anyone provide a solution or guidance on how to achieve this? Thanks.
1
0
80
3d
System files taking up way to much space
I am using an iPhone 11 running iOS 18 Developer Beta 1. Recently, I've encountered a significant problem with my system storage. As of now, my system files are occupying 44 GB of my 128 GB drive, which is an excessive amount. Here's a detailed overview of the issue: Problem Description: My system files are consuming an unusually large amount of storage—44 GB out of 128 GB. Steps Taken: I attempted to resolve this by cleaning up my pictures, but the system file size continued to grow. I also tried clearing the caches, but this did not help. Error Messages: I haven't received any specific error messages, but some of my apps keep crashing intermittently. Frequency of the Issue: This issue is constant and does not seem to resolve on its own. Impact: I am unable to update or download new apps. I cannot download new pictures. I am unable to update to iOS 18 Developer Beta 2 due to insufficient space. Additional Information: The problem began around a week ago. At that time, the system files were around 10 GB, which was already concerning, but it has now ballooned to 44 GB. This storage issue is severely impacting the functionality of my iPhone, and I'm seeking assistance to identify the cause and find a solution.
1
1
96
2d
Document and data size in ios
We want to give the user the ability to clear "document and data". We first try to calculate the size by summing the size of all the files in that directory FileManager.default.urls(for: .cachesDirectory, in: .userDomainMask).first. But after calculating the size, we see that the size of the "document and data" that the user sees in the storage is larger than the size of our cache in ios 17. But in earlier versions 16, 15, etc. this directory is not taken into account when calculating the size . Which directories are counted in ios 17? And what directories are taken into account in an earlier version of iOS?
0
0
67
2d
My Developer Account Has Expired, No Option to Renew
Hello, My developer account has expired, and I can't renew it. Despite checking on both my iPhone and Mac App Store, my subscription doesn't show up in the subscription list. The renew button is missing in the Developer app on both iPhone and Mac, and it’s also absent on the website: https://developer.apple.com/account. I’ve tried logging in and out multiple times on both devices. I’ve even contacted Apple Support, but haven’t received any response. My apps are at risk of being removed from the store. I’m in the middle of an important project and can't even publish a TestFlight version. It's incredibly frustrating. It's disappointing that such a large company like Apple could have such a glaring issue. Can anyone please suggest a way to fix this?
1
0
113
1d
Complaint Regarding iPhone 14 Screen Issue Case ID: 102323069276
Dear Apple Support, I am writing to express my dissatisfaction with the handling of my case regarding my iPhone 14 screen issue Case ID: 102323069276. From last 1 month, I contacted Apple Support and reported that my iPhone 14 screen turned black after a software update. I spoke with an advisor but every time they tell that they can't reach me. Since then, I haven't received any further updates or solutions. I am frustrated by the lack of progress and would appreciate it if you could escalate this matter. Thank you for your time and attention to this issue. Sincerely, Mohammed Arsh
3
0
623
1d