Search results for

Popping Sound

19,348 results found

Post

Replies

Boosts

Views

Activity

Reply to How to Fix Cracking and Popping Sound ?
I don’t feel like turning off every app apart from the one making sound is viable, and frankly it shouldn’t be necessary. I haven’t had to do that in 20 years of having computers. Until now. Apple finally replaced my M1 MacBook Pro after verifying the crackling sound in spite of not being able to diagnose the fault. And then I switched on the replacement and no pops, no crackles… I start to relax, celebrate even… and then pop 💥 it’s back 🤦🏼‍♂️
Topic: Community SubTopic: Apple Developers Tags:
Feb ’23
Reply to macOS Big Sur Beta 11.3 Popping sound issue came back
I have never had this audio issue on my older mac computers. Now this is a big problem on my brand new iMAC with BigSur. I am currently updating to ver. 11.4 but it doesn't seem to solve the problem based on the comment above. The sudo killall -9 coreaudiod command does NOT work for me. This issue is extremely frustrating... Hope Apple fixes this bug ASAP. Or if anyone has some solution to audio clipping/popping issue on BigSur OS, please help.
Topic: App & System Services SubTopic: Core OS Tags:
May ’21
Audio Unit : from audio to MIDI
Hi,I'd like to create a kind of MIDI effect which uses audio input : you play a chord on the keaybord, and the MIDI out uses these notes but with the rythm of the audio source.I tried to add to the AUMIDIPassThru exemple an audio render, but Logic does not detect the audio input (the side chain control does not appear as it does for the vocoder for exemple). I tried to subclass both AUMIDIEffect and AUEffect, but the the compilation is refused. How do you think that I should do?Thanks for your help!
1
0
425
Mar ’17
Peeking with popping results in console warning
SetupTwo view controllers: A and B.A allows the user to peek-and-pop into B using UIViewControllerPreviewingDelegate.Observed BehaviorPeeking and then popping works as expected, but peeking and not following through with a pop often results in console warning:Warning: Attempt to dismiss from view controller <RootViewController: 0x107168050> while a presentation or dismiss is in progress!Repeating the interaction several times (peeking without popping) eventually causes the UI to freeze, with the background of A blurred and B being stuck in preview mode.Overriding dismiss(:animated:) in B reveals it's called twice before viewDidDisappear() is called. The duplicate call to dismiss(:animated:) happens every time, and it's after the second call when the warning appears. After spending the last few hours on this scouring the documentation and the internet, i'm left scratching my head. Has anyone encountered this or a similar issue? i'm running iOS 11.0.1 on an iPhone 6S an
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
288
Sep ’17
Reimplementing UINavigationController's pop behaviour
I'm looking for ideas on how to reimplement UINavigationController's pop/dismiss behaviour. The animated transition manages to move the view ( .from ) together with the keyboard ( UIRemoteKeyboardWindow ) and inputAccessoryView ( UITextEffectsWindow ). I tried to animate a snapshot of the windows and to move the frame of the windows, but it lead to all kinds of visual bugs. I'd appreciate any kind of hint, thank you!
1
0
487
Jul ’21
log.txt pop up on documents
I've been getting this log.txt pop up on my documents and I don't know what it's about. I looked online and it saying its debugging my system but my macbook is new that i dont know why it would be doing so. Everytime i try and move it to trash and restart my laptop, it just pops back up. Why is it doing this?
0
0
642
May ’24
Pop-up scheduled at fixed time
Hello, I am a new developer on the IOS pteforme and I need your help, in an application I need a pop up to launch every day at 8 p.m. in order to ask a person for medical monitoring if she had a seizure or not and depending on her response this pop up would launch the application. Could you help me to know which frameworks to use? Thanking you in advance. Best Regards.
1
0
431
Sep ’20
Streaming audio from HTTP and Audio Meter
Hi all.I'm putting together an app (swift) and need help with a requirement (or two).1. App needs to stream audio from HTTP (not from a file).2. Need an audio level meter (moves with the sounds from HTTP feed).3. Need to be able to use a switch to switch between two HTTP audio feeds.The third one I'm sure is easy. But I haven't been able to figure out how to do the first and second. AVPlayer works with HTTP, but haven't found an audio meter. And AVAudioPlayer has the meter but no way of streaming audio. Any suggestions that would work in swift?Thanks very much!
3
0
2.5k
Nov ’15
Detect when document is popped from stack
Use case:- User requests a template.- Using the standard Apple boilerplate code, a loadingIndicator is added to the navigationDocument while the template loads.- Let's say there's a long-running background process and the user doesn't want to wait.- User hits back on the remote while the loadingIndicator is showing, before the new template is pushed to the stack.Problem:- Presenter.js: this.loadingIndicatorVisible is not reset to false, causing an error whenever trying to add something else to the stack in future.Question:- How can I detect whether a document has been removed, or has been popped from the navigation stack?- I'd like to use this as an opportunity to reset the loadingIndicatorVisible value, but also to do any cleanup / cancel network requests etc.I'm aware that it's possible to manually pop/remove a document from the stack, but am looking for a catch-all way to detect this event.Any ideas much appreciated, thanks!
1
0
465
Nov ’15
Web app blocking pop-ups
My app uses UIWebView to display a certain webpage that asks to allow pop-ups (it does this even with 'block pop-ups' switched off in settings). This address opens fine on a laptop or iPad when entered manually, because it allows a warning message saying “This site is attempting to open a pop-up window” with the Block or Allow buttons. That warning message doesn’t appear when using the UIWebView app I’m creating.How can I make the app allow that message to appear, so the use can hit ‘allow’ which will let the page load as it is supposed to?
Topic: Safari & Web SubTopic: General Tags:
0
0
1.7k
Oct ’15
NavigationLink automatically pop
Xcode Version 13.2.1 (13C100) iOS15.2 Swift5 If repeat the navigation about 10 times, it will return FirstView automatically. The expected output is to move from 0 to 100 with the next button. I am developing a list navigation app with SwiftUI. A navigation bug occurred in the code and procedure shown below. 1.tap item in FirstView. 2.open SecondView. 3.open ThirdView. 4.tap next button navigate to SecondView. Repeat steps 2-4 about 10 times navigate SecondView when pop View to FirstView. How can I solve it? import SwiftUI final class ViewModel: ObservableObject { @Published var currentIndex: Int? public func next() { if let currentIndex = self.currentIndex { if currentIndex < 100 { self.currentIndex = currentIndex + 1 } else { self.currentIndex = nil } } } } struct FirstView: View { @StateObject var vm = ViewModel() var body: some View { NavigationView { List(0..<100) { i in NavigationLink(String(i), tag: i, selection: $vm.currentIndex) { SecondView(vm: vm) }.isDetailLink(false) } } .navigatio
0
0
520
Dec ’21
Keyboard not popping for typing OTP
After IOS upgraded to 14.2 I am facing issue in typing OTP. I can able to type username and password but while OTP page comes, the keyboard doesn’t pop up even after tapping multiple times on the OTP screen and it’s very frustrating. Unable to do any verification.The same thing in happening in my iPhone and iPad both. I am having iPhone 11 Pro Max and iPad pro.Apple should fix this bug ASAP. Even after spending so much money on Apple what is the use if we can’t do any kind of verification just because keyboard not popping up...This is not at all expected from Apple products. Apple should take this seriously.
0
0
894
Feb ’21