Post

Replies

Boosts

Views

Activity

Reply to Level index
Huh? What are you saying here? There's very little information. Can you expand on what you're talking about? Also, note that these are the Developer Forums where developers of third-party apps ask for hints and tips on coding their apps. We aren't Apple's actual employed developers, and your post suggests it's not even something developers would be concerned about anyway. Maybe you should speak with someone in Apple corporate?
Topic: Safari & Web SubTopic: General Tags:
Jun ’25
Reply to Pictures
Have you raised a Feedback report? If not, please do so at https://feedbackassistant.apple.com/ then post the FB number here. And, when you raise the bug report, please give more information than you're "having issues". What issues? What happens? What doesn't happen? Are there any errors? This info will be required.
Jun ’25
Reply to Headlinea-regular
The error is telling you that the font file doesn't exist in that location. Do you have that .ttf file anywhere? If so, put it into that location, and it should build fine. If you don't have that font file, see if it's free to download somewhere on the internet, download it, and put it in that location. This is just a missing file issue, nothing drastic.
Jun ’25
Reply to İphon X iOS 18 almıyor beta
Safari translates this as: "My iPhone X model phone iOS 18 update didn't come it doesn't work in beta programs can you help". iOS 18 is not compatible with iPhone X. This has been known since last June 2024's WWDC. You cannot install iOS 18 or later versions on your iPhone X. You are limited to iOS 17.x. If you want iOS 18 or later you will have to get a newer iPhone.
Jun ’25
Reply to iphone Safe isafe
This is clearly a load of AI slop. For example: Expand Recycled Materials: Increase the use of Liquid Glass (as introduced in iOS 26) across all Apple devices, reducing reliance on virgin plastics. For example, integrate Liquid Glass into iPhone screens and MacBook casings, ensuring 100% recyclability at end-of-life. Yeah, let's integrate some software design into the physical glass of a phone screen. Please, guys, no one on here wants to read this sort of rubbish, so please stop posting it.
Jun ’25
Reply to 4.3 B Spam Error
There are far too many horoscope applications on the App Store. It doesn't need another one. However, if you're convinced your app is that good, and deserves to be on the store, you will need to add a lot of features to it to differentiate it from the many hundreds (thousands?) of others.
Jun ’25
Reply to APP’S NÃO FUNCIONAM COM O IOS26
You have updated your device to a beta version of iOS 26. Third-party developers have to spend time to update their apps to work on the new version of the operating system. Then, when those versions are ready, they will be released when iOS 26 is released but not before. This is why you should never install a beta version on your primary device. If you rely on a specific app, that app may not work, and you'll be stuck - as you have found out. Your best option is to downgrade to iOS 18.5. There are plenty of websites showing you how to do that. Your apps will then work again.
Jun ’25
Reply to Update Widget Every Minute
You're allowed 72 refreshes in a 24-hour period, so that's once every 20 minutes. One of my own apps displays timers on the widgets, and they generally keep in sync when I use one timeline entry with a date of now, and set it to refresh after now + 20 minutes, i.e. let date = Date() let refreshDate = Calendar.autoupdatingCurrent.date(byAdding: .minute, value: 20, to: date)! ... return Timeline(entries: entries, policy: .after(refreshDate)) I say they "generally" keep in sync. There can be occasions where they'll be a minute or two out - as @jcgoforth explained - so I work around that. (For info, if the timer is going to hit zero before the 20 minutes, then the refreshDate is set to the actual date of the end of the timer, so the refresh happens then rather than up to 20 minutes later.) The best thing you can do is use the preview timeline in Xcode. Add something like this to your widget view, and open the preview canvas in Xcode. You can then scroll through the entries and see how they'll look: #Preview(as: .systemMedium) { WidgetExtension() } timeline: { for offset in 0..<30 { let entryDate = Calendar.current.date(byAdding: .minute, value: offset, to: secondEntryDate)! let entry = SingleClockEntry(date: entryDate, configuration: configuration) entries.append(entry) }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jun ’25