Post

Replies

Boosts

Views

Activity

Reply to IOS 26 carshed my IPhone 14pro Display
Have you raised a Feedback report? If not, please do so at https://feedbackassistant.apple.com/ then post the FB number here. Then, if the phone isn't working, yes, you should downgrade. If the downgrade is successful - and you can use the iPhone as normal - you could try to upgrade again, but if it does the same I'd say hold off until a later beta comes out. But, it's important that you raise the bug.
Topic: App & System Services SubTopic: Hardware Tags:
Jul ’25
Reply to User Data In-App Deletion for Government Apps
Well, you aren't going to be creating a driving licence or passport in your app, so there's no need to delete that data. You're just providing users with a way to view already existing data via an app. What you need to provide is a way to delete data that your app creates. If users can create an account on a government website (outside of your app) and login to your app with those same credentials, or they can create an account in the app and login to the government website with those same credentials, then there should be no requirement to delete the login details or user account. If, however, the app creates a brand new account used solely for the app, then this is what must be available for deletion. What you also might have to offer is the deletion of any data pertaining to the use of the app, e.g. logs or app customisations saved as a file on government servers. An example might be a preferences file that's created in the app and uploaded to the server.
Topic: Privacy & Security SubTopic: General Tags:
Jul ’25
Reply to iPhone 15 Pro Max - does not ring since install of 26 beta
Probably, it's beta software. Have you raised a Feedback report? If not, please do so at https://feedbackassistant.apple.com/ then post the FB number here. When you raise the bug, be sure to explain what ringtone you have selected, and any other relevant info such as whether you've assigned a particular ringtone to the person calling you, or whether it's just a general ringtone for all calls. Are you in a focus mode like Mindfulness or Personal, perhaps?
Jul ’25
Reply to App is getting rejected due to 'Guideline 2.1 - Performance - App Completeness'
It's your app, how are we supposed to know? We're just developers like you. The App Review Team will have taken the credentials you gave them, and tried to login. When the login failed, they stopped reviewing it and informed you of the issue. That'll be the extent of their information on how to reproduce the issue. Do you have any logging on your server so you know why the login failed? Have you tried to debug it, and follow through the code to see what happens when you attempt to login with those credentials? Whilst stepping through the code you might notice something that could be causing the issue. Why is the password field blank? Does it get wiped the moment the user presses the Login button? Did the App Review Team attempt to login without a password? Did you give them a password? So many questions...
Jul ’25
Reply to Behavior of Image and ignoresSafeArea
When you do this: Image(.background) .resizable() .scaledToFill() .ignoresSafeArea() You're telling SwiftUI that the image can be resized, and you want to scale it to fill its parent, so SwiftUI scales the image. However, at this point, SwiftUI doesn't know that the image can ignore the safe areas, so the parent view at that point isn't ignoring safe areas. That's why you get the white bit at the bottom. I took your image and added a red border and yellow squares in the corners so I could see where the image was stretched/resized and positioned. With the code above, you get this: So you can see it was resized to fit inside the parent view, and doesn't ignore the safe areas. For your needs, just remove the .scaledToFill() modifier, you don't need it: Image(.background) .resizable() .ignoresSafeArea() This yields: If your ultimate need is to get that last image with just the white bit at the bottom, the fix again is to remove the scaling: Image(.background) .resizable() .ignoresSafeArea(edges: .top)
Topic: UI Frameworks SubTopic: SwiftUI
Jul ’25
Reply to Avoiding a macOS Tahoe window corner in objective-c
I can't help you specifically with this, sorry. I know it's a pain to migrate from ObjC to Swift/SwiftUI - I've been there - but there are two options: Migrate from ObjC one file at a time; Rewrite the app from scratch. I completely rewrote one of my ObjC apps within a couple of weeks in my spare time, and it has far less code in it. Things like filter, map and compactMap reduced my code so much. You could do this as a separate project while trying to update the original app. So, make the necessary updates to the original and also start writing the new version from scratch. You'll probably enjoy it. And if you need any help at all, just ask.
Topic: UI Frameworks SubTopic: AppKit
Jul ’25