Search results for

Popping Sound

19,351 results found

Post

Replies

Boosts

Views

Activity

SourceKit crashing and Xcode crippled when project uses a dynamic framework (Xcode 7 beta 3)
Has anyone else encountered continuous crashing of SourceKit (not the editor per se) on Xcode 7 beta 3 when working with a project that uses a dynamic framework? My particular problem is when I use the Realm framework (https://github.com/realm/realm-cocoa/tree/swift-2.0), but from what I gather after research, it sounds like a more general problem.The crashes manifests as various symptoms including, but not limited to:Syntax highlighting disabled.Code completion disabled.Quickhelp documentation disabled.The 'Report a Problem' dropdown constantly appearing.import <FrameworkName> is marked with an error - could not build Objective-C module ***.Debugging functionality is crippled - breakpoints work, but variables cannot be examined. (This is the dealbreaker).SourceKit logs in console show an error like below:Crashed Thread: 8 Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Application Specific Information: Assertion failed: ((!FileContext || issue != Sta
1
0
1.9k
Jul ’15
"Rich Results" for local items?
On Page 189 of the Search APIs introduction (http://devstreaming.apple.com/videos/wwdc/2015/709jcaer6su/709/709_introducing_search_apis.pdf?dl=1) there are options for creating rich results (e.g., a play button to play audio right from the search results).Is this possible for local results (i.e., play an audio file that is located in the application's documents directory) rather than web results? Any pointers on how to achieve this or do I need to open an enhancement radar for this?
3
0
423
Jul ’15
IMAP Gmail account
I have just downloaded El Capitan. I have a problem with Mail. It cannot connect to IMAP Gmail. Thus I cannot down load mail from gmail. However I can send emails through Gmail as it use a pop account for this. Also, if I try to change any of the settings og Gmail in the advanced section of the account, it asks for them to be saved which I do. When I go back into the account I see they are not saved. It shows 0 as the port number. If I enter 993 which I think is the correct port number, again it does not save it.Has anyone any ideas.
2
0
555
Jul ’15
How to write to an FTP?
Hello everyone,In an app i'm recording a sound and let the user upload it to an FTP (.caf file).Writing it to the FTP isn't really working out, should I use CFWriteStreamWrite or something else?Can someone help me out please?Thanks!GrtzRobby
4
0
2.2k
Jul ’15
Can not choose MFI speakers to play while recording?
Hi friends,I met this problem while my app was recording to get the Sound level trough iPhone's mic: I can only choose the speaker of iPhone, without the airplay-able speakers in my network.It happens when i start the audio session like following:VAudioSession * audioSession = [AVAudioSession sharedInstance];[audioSession setCategory:AVAudioSessionCategoryPlayAndRecord error:&error];I use MPMoviePlayerController to play an audio file. And i need play this audio on a specail airplay device.Do any body can help me? Thanks very much.
0
0
358
Jul ’15
Need help showing track name and artist [swift]
Hi,I've been trying to find a way to access the track name and artist information from any background audio just like the iOS control center player (swipe up view).I have a part of my app that needs to display the track name and artist of any current music playing in the background.At the moment I've been testing the MPMusicPlayerController but I can only get it to provide the now playing item of the Music app and not other third-party apps like Spotify or Apple's podcast app.Any idea how I can replicate the control centers ability to fetch now playing items from any app music using the play audio background mode?I'm trying to get this working in swift.Thanks!
2
0
2.1k
Jul ’15
Xcode dependency management particular branch
I'm trying to use Xcode source control dependency managment as demonstrated in the 2013 WWDC video titled Understanding Source Control in Xcode (Session 414). Specifically, minutes 14:45 – 19:00 with Kevin Lindeman (sounds like Peter Overby on NPR).When using Subversion externals or Git submodules for dependency management, you can specify particular revisions (svn) or commits (git) that a dependency should be at. However, when opening a new Xcode workspace, and the Check out additional working copies? dialog appears, the user is given a choice of branches to checkout.How do I specify to Xcode what particular branch a project's dependency should use?Example scenario: Workspace Utensils has project Spatula which depends upon project Metallurgy. I'm working on Spatula with Metallurgy on branch feature_iron and all my updates (including xccheckout files) are pushed to remote repos. A coworker uses Xcode to checkout Utensils from remote repos, and consequently Xcode offers to check out Metallurgy also. H
0
0
262
Jul ’15
Reply to Audio Unit Extensions - multiple plugin instances
Hosts can run as many simultaneous AU instances as can be opened within the limits of system memory. Audio Units have been around for a very long time, since OS X 10.0 and iOS 2.0 but Audio Unit Extensions bring this plug-in model to both OS X El Capitan and iOS 9 via a completely new modern API (we've referred to it as the Version 3 Audio Unit API).The WWDC 2015 video Audio Unit Extensions is the introduction to this technology: https://developer.apple.com/videos/wwdc/2015/?id=508
Topic: Media Technologies SubTopic: Audio Tags:
Jul ’15
Reply to Auto-renew subscriptions and originalTransactionId/transactionId issue
You wrote:...Case 1......Receipt contains one chain of transactions with first month subscription, second month cancelation and second month subscription all with same original transaction idCase 2:.....two chains of transactions: one for the first month with one original transaction id , and a second one for the second month; both with different originalTransactionIdAnd the documents state for original_transaction_id All receipts in a chain of renewals for an auto-renewable subscription have the same value for this field.So Case 1 is consistent with this, assuming only that the cancellation/renewal is the same subscription - and it is, isn't it? It was renewed in the month it was cancelled so the subscription is continuous.Case 2 sounds like either your facts are wrong or this is a bug. After all, it is one autorenewable subscription that auto-renewed once - how does it differ from all other autorenewable subscriptions?
Topic: App & System Services SubTopic: StoreKit Tags:
Jul ’15