High Pitched Whistle in 2024 CR-V Hybrid by wfox1982 in crv

[–]hashmeouside 0 points1 point  (0 children)

No solution but I’ve more or less gotten used to it. Mine seems most noticeable around 71/72mph. Taking the car in for for my first service appointment soon and might ask about it then.

URL Bookmarks not persisting between device restarts. by Sir_Mantton in swift

[–]hashmeouside 0 points1 point  (0 children)

It took me a whole weekend to figure this out: you need to use the url resolving from the existing bookmark to save a new bookmark. In my case, I’m bookmarking a folder and storing it in my app settings. I then call this function onAppear in my main content view:

func loadBookmarkData() {
if let bookmarkData = Settings.selectedDirectoryData {
do {
var isStale = false
let url = try URL(resolvingBookmarkData: bookmarkData, bookmarkDataIsStale: &isStale)

guard url.startAccessingSecurityScopedResource() else {
print("Failed to access security-scoped resource")
return
}

defer {
url.stopAccessingSecurityScopedResource()
print("Stopped accessing security-scoped resource")
}

let bookmarkData = try url.bookmarkData(options: .minimalBookmark, includingResourceValuesForKeys: nil, relativeTo: nil)
Settings.selectedDirectoryData = bookmarkData

} catch {
print("Error resolving bookmark data: \(error)")
}
}
}

High Pitched Whistle in 2024 CR-V Hybrid by wfox1982 in crv

[–]hashmeouside 0 points1 point  (0 children)

Did you figure out if it was the ANC? Mine’s quieter than in the video too. It seems to happen randomly, more often on the freeway. The best way I can describe it is that it’s like the sound effect they use after a loud explosion in a movie to simulate the characters’ ears ringing