Testing iOS apps across time zones on a physical device has historically required mocks or manual workarounds. With RocketSim 16.4 and Xcode 27, developers can simulate location changes on a USB-connected iPhone or iPad, causing iOS to automatically update its system time zone. The workflow requires enabling 'Set Automatically' for Date & Time and 'Setting Time Zone' under Location Services. Developers can simulate routes or specific coordinates, then observe how their app handles time zone transitions both while running and after a cold launch. Key Swift APIs covered include `TimeZone.autoupdatingCurrent` and observing `NSSystemTimeZoneDidChange` notifications. The article also outlines what to validate: date/time display refresh, cached formatters, calendar events, and relative labels like 'today'. Limitations include inability to set a specific date/time, so daylight-saving or midnight-crossing scenarios still need mocks or injected clocks.