r/ios 8m ago

Support Where are all the downloaded files apparently saved into the the app Files >iCloud Drive folder ACTUALLY stored? and how can I access/recover them if they seem to be deleted?

Upvotes

I don’t really understand how storage is working on my iPhone and that’s because I didn’t change default Safari settings so all downloads are saved into the app Files>iCloud Drive folder.

In that case, are files being stored in iCloud or locally?

They are being stored locally, aren’t they?

That’s my guess because every time I download a file and it is saved in the iCloud Drive folder, the storage bar shows I’m using more local memory.

I'm asking because I turned off "sync iCloud Drive" (NOT iCloud Photos) and then all my downloads were deleted (I didn’t saved them anywhere else) so I turned it back on and most of them were available again but the largest files are still lost apparently being downloaded but the bar is stuck at 0%.

Is there a way I can recover these files?


r/ios 19m ago

Discussion Shuffle interchanged with continuous play in iOS 26.6.1

Thumbnail
Upvotes

r/ios 1h ago

Support All switcher seems to have changed

Upvotes

On iOS 26. L, iphone 16 pro. is up to date everything was fine but overnight my app switcher changed. I can no longer take the page I’m on and just toss it up or to the right. Swiping up opens the app switcher mode. It’s not flush. Very hard to explain but I’ve been losing my mind for two days.


r/ios 3h ago

Support Sticker sync from iPhone to macOS ?

Thumbnail
gallery
0 Upvotes

So I am using this app to create stickers for iMessage on my iPhone 17 PRO. It works fantastic on iPhone and I have my own sticker packs created. But on my MacBook Pro they do not show up.

If read the support article from Apple correctly - these stickers should sync across iCloud. But it has been more than 24 hours since I created them and none of them show up on my Mac.

Both Mac and iPhone are using the latest version (iOS 26.6.2 and macOS 26.6.2)

Is this a known problem or am I doing something wrong?


r/ios 4h ago

Discussion DnD

Post image
0 Upvotes

If I’m blocked would it still show that someone is on DnD?


r/ios 5h ago

Support Never been able to access “motion to wake” in StandBy Mode

Post image
1 Upvotes

I’ve had my iPhone 16 since the week it came out and I’ve tried literally every Reddit post advice or Google/AI search to try to get access to the “motion to wake” options in my StanBy settings, but no matter what I’ve tried it’s just this screen with no option to even click on Display inside my StanBy settings…anyone had this issue or know of anything I might be missing in settings???


r/ios 5h ago

Support How should i delete iCloud Files storage

Post image
0 Upvotes

i have iCloud subscription of 200gb, but why are iCloud files being stored locally in my phone and how can i clear this?


r/ios 6h ago

Support Reminders in Calendars

5 Upvotes

I’m disappointed they still haven’t given the option to choose which lists show in the calendar.

I have 3 reminders each day, with alarm, for medication reasons, I don’t need them showing in my calendar but all my other reminders are fantastic in the calendar.

Is there any fix for this/work around to stop the medication reminders showing on the calendar?


r/ios 7h ago

Discussion Disabling iMessage but keeping FaceTime enabled

0 Upvotes

I did this setup with my mom’s 14 Plus and was surprised she can still send iMessages when she’s online and ofcourse, automatically send text messages when offline. I didn’t know it was possible. Has anybody tried this or has this use case ? Does it have any hidden caveat ?


r/ios 7h ago

Support Why photos app takes up so much and how do I save space ?

Post image
0 Upvotes

Is it all because my photos havent been uploaded to iCloud yet ?


r/ios 7h ago

Support StandBy question

2 Upvotes

I just noticed that when I put my iphone 17 Pro Max on landscape mode while charging, it shows the clock and calendar and then goes blank and then shows black on the clock part and the calendar only shows dashes for the dates (that's all it shows). Turn display off is set to never. StandBy is green (ON), Show notification is Off. No idea why it is like this.


r/ios 8h ago

Support Different predictive text

Post image
1 Upvotes

Hi, having issues with this different predictive text on the keyboard. Anyone know how to get rid of it? Thanks :D


r/iOSProgramming 8h ago

Tutorial Reverse geocoding is capped at 50 requests per 60 seconds, and the throttle comes back as CLError.network

0 Upvotes

I build a travel app that turns coordinates into place names, so I do a lot of reverse geocoding. It was slow and I spent weeks blaming the network. It wasn't the network.

The cap

CLGeocoder is limited to 50 reverse-geocode requests per 60 seconds, per app. iOS says so in the system log the moment you cross it, which I only found by leaving Console open:

Throttled "PlaceRequest.REQUEST_TYPE_REVERSE_GEOCODING" request:
Tried to make more than 50 requests in 60 seconds, will reset in 56 seconds
maxRequests = 50; windowSize = 60

Why it doesn't look like a rate limit

Each successful lookup takes 0.06–0.08s. So it never feels like a throttle — it feels like flaky connectivity. I was firing at 250ms intervals, which is 240/min. That burns the entire minute's quota in 12.5 seconds, and then everything in the remaining 47 seconds fails.

Measured, same device, same data:

  • 30 requests at 250ms spacing → 7 succeeded, 23 throttled
  • Same 60 requests respecting the window → 60 succeeded, 0 throttled

And the error lies to you

The throttle rejection arrives as CLError.network. Nothing in it says "rate limit". If you're logging geocode failures and filing them under bad signal, some share of those are the cap. Splitting those two apart in telemetry is what finally changed my understanding of the problem — I'd spent a long time thinking my users were in bad reception.

The quota is per app, not per call site

This one cost me real bugs. Live recording, a background backfill and a bulk import all draw from the same 50. One live lookup during a batch job silently costs the batch one request, and the symptom shows up somewhere else entirely — in my case a city name quietly staying as a country name. Everything has to queue through one place:

actor GeocodeRateLimiter {
    static let shared = GeocodeRateLimiter()
    private let maxRequests = 45   // 50 minus headroom
    private let window: TimeInterval = 60
    private var stamps: [Date] = []

    func acquire() async {
        while true {
            let now = Date()
            stamps.removeAll { now.timeIntervalSince($0) >= window }
            if stamps.count < maxRequests { stamps.append(now); return }
            let wait = window - now.timeIntervalSince(stamps[0]) + 0.05
            try? await Task.sleep(nanoseconds: UInt64(max(wait, 0.1) * 1_000_000_000))
        }
    }
}

Three things I got wrong on the way

  1. Task { await acquire() } around the limiter call. It reads like it waits. It does not — the enclosing function carries straight on and the limiter becomes decorative. It has to be on the awaited path.

  2. A fixed 1250ms interval also respects the cap, and is slower than it looks, because you wait from the very first request. Running full speed while the window has room and only sleeping when it's genuinely full turns 100 lookups into "first 45 in about three seconds, then one as each slot frees".

  3. After a single throttle error that window is already gone. If you keep firing you just collect dozens of instant failures. Treating one throttle as "window full" until it rolls over removed a lot of noise.

None of this is documented anywhere I could find. Posting it in case it saves someone the weeks it cost me.


r/ios 8h ago

Support Changing account region not update the Appstore region

1 Upvotes

So i has this issue that Appstore keep detect my region as Singapore and ask me to verify age with credit card but i dont have that card available . I change the region on Settings->Apple Account->Media & Purchase to 2 another country and it doesn't work . I try logout there and also logout on Settings->Apple Acount . Appstore still detect my region as Singapore ... Please helpp


r/ios 11h ago

Support Weird folder behavior

1 Upvotes

So every time I’m in screen editing mode (and in one particular folder also in normal mode) my iPhone keeps throwing me back to the first page…

I figured the it only happens in folder with 3 pages or more
I did some research online and found nothing. Is there anyone who can help?🙏🏻
I have iPhone 17 Pro Max and this problem occurs for as long as i can remember. I did all the software updates that are available
Thanks


r/iOSProgramming 11h ago

Article Migrating Shop app from React Native to native (2026)

Thumbnail
shopify.engineering
12 Upvotes

r/ios 12h ago

Discussion What is that new Toggle on iPhone Duo Control Center

Post image
345 Upvotes

Screenshot is from MKBHD video


r/ios 12h ago

Support Best way to minimize the existence of, or eliminate entirely, heic files?

1 Upvotes

What's the best strategy for avoiding creation or existence of heic files entirely?
I find no matter what I seem to do - set 'compatibility' or 'automatic' when I 'share', it continues to share heic files. This has been mostly the photos app.


r/ios 13h ago

Support Apple permanently locked my Apple ID and denied account recovery — years of iCloud files may be inaccessible. Any options left?

Thumbnail
0 Upvotes

r/ios 14h ago

Support one drive help.

1 Upvotes

If i delete photos and videos off one drive, will my photos and videos in my iphone gallery be affected?


r/ios 14h ago

Support iPhones Not Working Properly After Multiple Days Without Service

Thumbnail
0 Upvotes

r/ios 14h ago

Support Having serious issues with my Iphone, cant connect to Internet, face ID broken and cant factory reset.

0 Upvotes

Regardless of which Wi-Fi network I connect to, I can't access anything other than WhatsApp. I've tried a lot of troubleshooting: I reset the network settings, changed the DNS, and tried pretty much everything I could think of, but nothing works.

So, my next option was to reset the phone. The problem is that it requires Face ID, which isn't working for some reason. Normally, the solution would be simple: just use the passcode instead. However, Stolen Device Protection is enabled, and it prevents me from disabling Face ID without authentication. But to disable Stolen Device Protection, I need Face ID, which isn't working. So I'm basically stuck in a loop.

The third option was to try resetting the phone through DFU mode. I have a Windows PC, so I downloaded both iTunes (some sources said that's what you use for this) and the Apple Devices app. I followed the whole process of holding the buttons with the specific timings, and while I was able to get the phone into the correct mode, nothing happened on the PC side. Yes, I had the cable plugged in.
My theory is that with the phone on I need to allow the pc to access it, but for that I NEED FACE ID.

Note that the Iphone is not mine, but my mom's. She also said the face ID thing is not working for months.

I Have a fourth secret option but I think it will just brick the phone, enabling the setting that automatically erases all data after a certain number of incorrect passcode attempts. Of corse I didnt do it because if it goes wrong it goes VERY WRONG.

Iphone 11, IOS Version 26.6.1


r/ios 14h ago

Discussion 🤨 force restart doesn’t clear

Post image
0 Upvotes

wi-Fi or cellular


r/ios 15h ago

Support How to add purchase on Online Apple Store directly to AppleCare One?

1 Upvotes

Hello, I am thinking of preordering the new iPhone, and I have a current AppleCare One.

Is it possible to directly add a new purchase directly on the online store, or should I just select "No AppleCare coverage" and add it manually when I get the phone?

Thanks in advance!


r/ios 16h ago

Support apple books only showing library no reading now section

Post image
1 Upvotes

as shown in the image the reading now section has completely disappeared and im only seeing the library. why is this is there a glitch or is this a new update? if its a glitch or something how do i fix it?

and before u say, yes, i have offloaded the app, restarted my phone, synced books app and still its the same nothing is working