Search results for

“Popping Sound”

20,037 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
447
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
310
Sep ’17
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
677
May ’24
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
506
Jul ’21
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
441
Sep ’20
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
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
479
Nov ’15
Review on ratings pop over
Hi All,Hey I'm really loving the new ratings pop over. But I was wondering, is there a way the user can write a review from there also?There doesn't seem to be a way but then in the article on it - https://developer.apple.com/app-store/ratings-and-reviews/ it saysUsers will submit a rating through the standardized prompt, and can authenticate with Touch ID to write and submit a review.So I'm not too sure. Is there a way to do this? Thanks!Pete
0
0
621
Dec ’17
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
556
Dec ’21
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:
Replies
Boosts
Views
Activity
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:
Replies
Boosts
Views
Activity
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!
Replies
1
Boosts
0
Views
447
Activity
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:
Replies
0
Boosts
0
Views
310
Activity
Sep ’17
Reply to Loading view controller from storyboard objective c - keeps purging content
It sounds more like you messed up when you converted to storyboards, and didn't covert that popping of the view controller to an unwind segue.Because if you just point the segue back to the other view controller, you don't get an unwind segue and instead you get a new view controller pushed onto the stack.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Oct ’17
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?
Replies
0
Boosts
0
Views
677
Activity
May ’24
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!
Replies
1
Boosts
0
Views
506
Activity
Jul ’21
Final Copy and Configurability of IDFA Pop Up?
What is the final copy that will be used for the IDFA pop up that is not required in iOS 14. In addition, how configurable will the copy, CTA of the pop up be?
Replies
0
Boosts
0
Views
265
Activity
Aug ’20
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.
Replies
1
Boosts
0
Views
441
Activity
Sep ’20
How to pop up the Limited Photos Library
How to pop up the Limited Photos Library, whether it supports OC
Replies
1
Boosts
0
Views
1.2k
Activity
Aug ’20
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:
Replies
0
Boosts
0
Views
1.7k
Activity
Oct ’15
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!
Replies
3
Boosts
0
Views
2.5k
Activity
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!
Replies
1
Boosts
0
Views
479
Activity
Nov ’15
Review on ratings pop over
Hi All,Hey I'm really loving the new ratings pop over. But I was wondering, is there a way the user can write a review from there also?There doesn't seem to be a way but then in the article on it - https://developer.apple.com/app-store/ratings-and-reviews/ it saysUsers will submit a rating through the standardized prompt, and can authenticate with Touch ID to write and submit a review.So I'm not too sure. Is there a way to do this? Thanks!Pete
Replies
0
Boosts
0
Views
621
Activity
Dec ’17
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
Replies
0
Boosts
0
Views
556
Activity
Dec ’21