Post

Replies

Boosts

Views

Activity

Reply to Mac M1 Unable to restore in DFU error
Okay, firstly, you have a MacBook Pro 2021 with an M1 chip, not a "Mac M1 Pro 2021". Do you have to use Apple Configurator? Can't you restore it in any other way? What have you tried? Oh, also, you're in the wrong place. These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. Thanks.
Dec ’24
Reply to I Need Help!
You're in the wrong place here. These are the Developer Forums, where developers of third-party apps ask for hints and tips on coding their own software. We're not Apple developers. Your link to that post from 2014 is the right place for you to ask this question. However, I'll give you a litle help. That post by Grant Bennet-Alder simply shows the Configuration.plist file being shown in Xcode. It is not necessary to have Xcode to edit that file. Also, when you say "root within xcode" you're misunderstanding what's being shown. Root is simply the root of the XML in that file, i.e. the base level of it. All data in an XML file - which is what a .plist file is, starts off in the root. You do not need to be in root mode to edit that file. Does this folder exist? /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphics.framework/Resources/ If so, is there a Configuration.plist file in there? If so, edit it in any text editor you want, and change it as suggested. That folder exists on my macOS 15.1.1, but the Configuration.plist file is not there. It is possible that, over the years, this was renamed, as there are two other .plist files in my current folder: Info.plist and version.plist but they do not look like your example.
Topic: UI Frameworks SubTopic: AppKit
Dec ’24
Reply to SwiftUI charts, how do I align these X axis labels correctly?
Look at your image and imagine there's a blue column immediately to the right of every red column. Now, the x-axis labels look like they're in the centre of the two columns. So, is your chart supposed to have two columns for each value? If not, in this line: AxisMarks(position: .automatic, values: shownXValues) { val in can position: .automatic be changed to something else? Also, is .useAppFont() a SwiftUI thing, or something you've written yourself? I've never seen it before.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Dec ’24
Reply to Inform users that they need to delete and reinstall the app
As a user, being told to delete an app and reinstall a new version is a terrible experience. I am more than likely to just delete your app unless it's something I desperately need. But, can't you do this with Core Data migration? I've done it before. Create a new version of your model. Create a mapping model that maps from your old version to the new one. Tell Core Data how to manage the data changes. Let's say you have this in version 1: name: String joinDate: Date detailsId: String and you want to have a new Details entity and join them up, version 2 would be something like this: name: String joinDate: Date detailsId: String // You can leave this for now, and delete it in a later mapping model details: // Relationship to new Details entity, which is: // Details entity: id: String // Copy the detailsId from version 1 to here // Fill out the rest of the entity with default values, or migrations from the original entity Is that not possible?
Dec ’24
Reply to Trackpad becomes non-clickable
You're in the wrong place. These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. However, because I'm a nice, friendly, helpful person, here's some help. It's not a fix, but it will let you control the pointer if your trackpad fails, so you can at least save what you're doing. Go to your System Settings, and search for "Mouse Keys". Enable it, and you can control the pointer. Here's an Apple Support document about it: https://support.apple.com/en-gb/guide/mac-help/mh27469/mac
Dec ’24
Reply to Iphone Pro Mac 16, 18.2 (22C152)
When you install a new version of iOS it takes a while for it to 'bed in'. It has to do various tasks in the background to get the device all updated properly. Some indexes are wiped and have to be recreated, for example. This takes battery power. This has been true for years. You said: I made sure all my apps where closed and at the end of day my only way to slow the leak was to put it in battery saving mode. Please don't do this. When you leave an app and go to the Home Screen, the app has about five seconds to finish what it needs to do, then it gets suspended. It uses zero power in the background. In fact, swiping those apps up out of the app switcher screen will cause you to use more power because the apps have to do more stuff when they start when you next launch them. It is a myth that apps use battery in the background. And finally, if your iPhone is on a beta version of iOS then yes, this is the right place to ask for help. However, you've only said that your other devices are on betas, so you're probably in the wrong place. Try the Apple Support Forums. Thanks.
Dec ’24
Reply to Does apple intelligence integrate with my Iphone 14 Apple Health App?
You're in the wrong place. These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. Thanks.
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Dec ’24
Reply to Mac M1 Unable to restore in DFU error
Okay, firstly, you have a MacBook Pro 2021 with an M1 chip, not a "Mac M1 Pro 2021". Do you have to use Apple Configurator? Can't you restore it in any other way? What have you tried? Oh, also, you're in the wrong place. These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. Thanks.
Replies
Boosts
Views
Activity
Dec ’24
Reply to Why can't I use Task in an iOS only package?
If you look at the Developer Documentation for Task it shows which versions it's available in. I see: iOS 13.0+ | iPadOS 13.0+ | Mac Catalyst 13.0+ | macOS 10.15+ | tvOS 13.0+ | visionOS 1.0+ | watchOS 6.0+ So yeah, macOS 15.0+. Is your app definitely only targeting iOS?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’24
Reply to I Need Help!
You're in the wrong place here. These are the Developer Forums, where developers of third-party apps ask for hints and tips on coding their own software. We're not Apple developers. Your link to that post from 2014 is the right place for you to ask this question. However, I'll give you a litle help. That post by Grant Bennet-Alder simply shows the Configuration.plist file being shown in Xcode. It is not necessary to have Xcode to edit that file. Also, when you say "root within xcode" you're misunderstanding what's being shown. Root is simply the root of the XML in that file, i.e. the base level of it. All data in an XML file - which is what a .plist file is, starts off in the root. You do not need to be in root mode to edit that file. Does this folder exist? /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphics.framework/Resources/ If so, is there a Configuration.plist file in there? If so, edit it in any text editor you want, and change it as suggested. That folder exists on my macOS 15.1.1, but the Configuration.plist file is not there. It is possible that, over the years, this was renamed, as there are two other .plist files in my current folder: Info.plist and version.plist but they do not look like your example.
Topic: UI Frameworks SubTopic: AppKit
Replies
Boosts
Views
Activity
Dec ’24
Reply to iMessage ne fonctionne pas
Veuillez visiter les forums d'assistance Apple où vous pourrez peut-être mieux répondre à votre problème.
Replies
Boosts
Views
Activity
Dec ’24
Reply to TCC_CRASHING_DUE_TO_PRIVACY_VIOLATION
Does your app do anything with photos or the photo library? Are you using a third-party library that uses them?
Replies
Boosts
Views
Activity
Dec ’24
Reply to Image Playground Sheet Appears Blank First Time Presented?
If you don't provide us any code to have a look at, you're just shouting into the void. Give us some code we can look at. We may notice what you're doing wrong, but right now we have no idea; you're basically just telling us you have an issue. What do you think we can do with that?!
Replies
Boosts
Views
Activity
Dec ’24
Reply to Move app to hidden apps folder programmatically iOS 18
Moving your own app to the Hidden folder would be okay. Moving someone else's app? Nope.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’24
Reply to SwiftUI charts, how do I align these X axis labels correctly?
Look at your image and imagine there's a blue column immediately to the right of every red column. Now, the x-axis labels look like they're in the centre of the two columns. So, is your chart supposed to have two columns for each value? If not, in this line: AxisMarks(position: .automatic, values: shownXValues) { val in can position: .automatic be changed to something else? Also, is .useAppFont() a SwiftUI thing, or something you've written yourself? I've never seen it before.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’24
Reply to The "简单搜索" App Disappeared from the App Store
Is it your app? If so, you must know why you removed it? Is it someone else's app? If so, ask them. We're just random people who develop software for Apple's platforms, and can't help you on this.
Replies
Boosts
Views
Activity
Dec ’24
Reply to Inform users that they need to delete and reinstall the app
As a user, being told to delete an app and reinstall a new version is a terrible experience. I am more than likely to just delete your app unless it's something I desperately need. But, can't you do this with Core Data migration? I've done it before. Create a new version of your model. Create a mapping model that maps from your old version to the new one. Tell Core Data how to manage the data changes. Let's say you have this in version 1: name: String joinDate: Date detailsId: String and you want to have a new Details entity and join them up, version 2 would be something like this: name: String joinDate: Date detailsId: String // You can leave this for now, and delete it in a later mapping model details: // Relationship to new Details entity, which is: // Details entity: id: String // Copy the detailsId from version 1 to here // Fill out the rest of the entity with default values, or migrations from the original entity Is that not possible?
Replies
Boosts
Views
Activity
Dec ’24
Reply to Trackpad becomes non-clickable
You're in the wrong place. These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. However, because I'm a nice, friendly, helpful person, here's some help. It's not a fix, but it will let you control the pointer if your trackpad fails, so you can at least save what you're doing. Go to your System Settings, and search for "Mouse Keys". Enable it, and you can control the pointer. Here's an Apple Support document about it: https://support.apple.com/en-gb/guide/mac-help/mh27469/mac
Replies
Boosts
Views
Activity
Dec ’24
Reply to Bug in ios 18.2
Sorry, where's the bug? You searched for ChatGPT, and the results are pointing you to it...?
Replies
Boosts
Views
Activity
Dec ’24
Reply to Iphone Pro Mac 16, 18.2 (22C152)
When you install a new version of iOS it takes a while for it to 'bed in'. It has to do various tasks in the background to get the device all updated properly. Some indexes are wiped and have to be recreated, for example. This takes battery power. This has been true for years. You said: I made sure all my apps where closed and at the end of day my only way to slow the leak was to put it in battery saving mode. Please don't do this. When you leave an app and go to the Home Screen, the app has about five seconds to finish what it needs to do, then it gets suspended. It uses zero power in the background. In fact, swiping those apps up out of the app switcher screen will cause you to use more power because the apps have to do more stuff when they start when you next launch them. It is a myth that apps use battery in the background. And finally, if your iPhone is on a beta version of iOS then yes, this is the right place to ask for help. However, you've only said that your other devices are on betas, so you're probably in the wrong place. Try the Apple Support Forums. Thanks.
Replies
Boosts
Views
Activity
Dec ’24
Reply to OTP code being used against me
Just wipe your phone and see if you can get back into the various apps and accounts. Have you tried using a Mac or Windows PC to access your bank accounts instead? But anyway, this isn't the place for your issue.
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Dec ’24