Search results for

build disappears

49,464 results found

Post

Replies

Boosts

Views

Activity

h264 Periodic Intra Refresh on iOS 8
HI,Anyone has experiance decoding a raw h264 stream with Periodic Intra Refresh using AVSampleBufferDisplayLayer ? I have an IP camera that sends h264 row stream with Periodic Intra Refresh over UDP.I'm building a CMBlockBuffer, appending all the NALU of a frame, then create a CMSampleBuffer with DisplayImmediately attachement and enque it to the AVSampleBufferDisplayLayer as descibed in WWDC - 2014 Direct Access to 
Video Encoding and Decoding video.My code is:// Called with all NALU of a frame as NSData (with start code replaced by the nalu size) - (void)didReceiveNalu:(NSArray*)naluArray { OSStatus osstatus; CMBlockBufferRef blockBufferRef = NULL; CMSampleBufferRef sampleBufferRef = NULL; // create a block buffer osstatus = CMBlockBufferCreateEmpty(CFAllocatorGetDefault(), naluArray.count, 0, &blockBufferRef); if (osstatus != kCMBlockBufferNoErr) { NSError* error = [NSError errorWithDomain:NSOSStatusErrorDomain code:osstatus userInfo:nil]; NSLog(@Error creating block buffer = %@, [error descri
0
0
1.1k
Jun ’15
Reply to problem with viewing web view storyboard in application
Any errors from testing or does it just do a silent fail?Black screen could be a number of reasons, from the build needing an option-clean to a misnamed SB to a case where an outlet is set on the view controller.If there are any outlets on the initial view controller (or, if the initial view controller is a navigation controller, the root view controller), the system will not render any launch image, and instead show a black screen.There are others, so search here/google and see if any hit the mark.
Topic: Programming Languages SubTopic: General Tags:
Jun ’15
Reply to mixing value semantics and reference semantics with protocol oriented design
Hi Quincey,Thanks for your patience. Yup, I am aware of KVO and MVC. After watching WWDC sessions about protocol oriented programming and Building Better Apps with Value Types I am trying to force myself to use this type of thinking for my projects to find out if I can find apply them and find any value in them. It sounds like with this particular case I am pushing for something that's not really cut for value semantics and I will be better off using classes.
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
Reply to Watch OS 2 beta 2
13S5255c is the build number of the broken b2 they pulled. People who updated before Apple pulled it have had to send their watches back to Apple to have them fixed.13S5255d is definitely the most up-to-date version available to developers.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Swift related "Invalid binary"
I'm uploading a new version of an app today. And iTC tells me Invalid binary. Corresponding email tells me this:Invalid Swift Support - The bundle contains an invalid implementation of Swift. The app may have been built or signed with non-compliant or pre-release tools. Visit developer.apple.com for more information.I'm compiling application as usual, with xcodebuild. Using 10.10.4 release and Xcode 6.4 release (I tried with 10.10.3, Xcode 6.3.2 and got the same result). Can't understand how this setup can build invalid Swift binary.Am I the only one seeing this problem? What can I do to ensure that resulting binary is OK?Thanks!
4
0
2.5k
Jun ’15
Reply to Apple Music?
But there is something to be said for feature parity. The discrepancy with production and beta software (where beta is actually behind production) is completely counter intuitive to the development process.Why should we be working on older code? What about apps that utilize the music player? Are you saying they just WONT break once Apple Music changes are included in the new player?The beta should be at minimum current with all production features (unless they are intentionally being depricated). Any b.s. excuses you want to throw around about developers knowing better. I am a developer, I know better, have been building and testing mobile apps since before the iPhone existed and have been registered with Apple (paying dev here) for 6 years now.Oh and yes I do have tons of devices. Some run beta and some run production. But that does not exuse these variances in feature parity.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Code signing Issues - need help please.
Hello everyone. Please excuse the rookie questions.I've created new development & distrobution certificates today on a new mac pro with a brand new xcode 6.4 install. I also made fresh, new provisioning profiles & enabled all the devices I wanted in the process.I was having already issues building & archiving on my other mac before but then I noticed that a number of the provisioning profiles had recently become invalid. Deciding that I was probably having more than one problem I decided to revoke all the old certificates & delete all the invalid profiles & create new ones.I created a development cert & a distrobution cert as well as provisioning profiles for development, ad-hoc dist & app store dist. All of that seemed to go perfectly fine. I installed the certificates on the mac & xcode see the new provisioning profiles but I am unable to run a build or archive an IPA.I'm getting what seem lile strange errors...xCode is saying:Code Sign error: No codesigning
9
0
3.4k
Jun ’15
Reply to Code signing Issues - need help please.
Hello, thanks.I am using the same apple ID and developer account that I always have if thats what you mean.There are no old archives of this app on this particular machine. This would be the first IPA exported on this computer or with this copy of Xcode.When I run a build with a particular simulator selected the build succeeds but the simulator does not open.When I run a build to a connected device I get:No codesigning identities (i.e. certificate and private key pairs) that match the provisioning profile specified in your build settings (“XC Ad Hoc: com.fulltimeartists.Graffwriter”) were found.
Jun ’15