Is there an easy function to determine distance betwwwn 2 aranchors or the underlying matrix_float4x4 they use?Thank you!
Search results for
DTiPhoneSimulatorErrorDomain Code 2
158,531 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I've got an odd issue with Configurator 2 when trying to build new iPads. I've fully updated the Mac and apps. The iPad downloads and installs the latest OS happily, but when I try to prepare, add a profile or add a wallpaper, it throws up this error. An unexpected error has occurred with iPad. The operation couldn't be completed. (NSMachErrorDomain - 0xFFFFFFFFFFFFFF (-1) [sys = 0x3F, sub = 0xFFF, code = 0x3FFF (16383)])(NSMachErrorDomain - 0xFFFFFFFFFFFFFF (-1) [sys = 0x3F, sub = 0xFFF, code = 0x3FFF (16383)]) Any help would be hugely appreciated!
Hello I am working on a project that supports Download and Play on Fairplay encrypted videos and I have the above error. Error Domain=AVFoundationErrorDomain Code=-11800 The operation could not be completed UserInfo={NSLocalizedFailureReason=An unknown error occurred (-42800), NSLocalizedDescription=The operation could not be completed, NSUnderlyingError=0x28189d470 {Error Domain=NSOSStatusErrorDomain Code=-42800 (null)}} The weird is that the first 2 days the downloaded asset plays correctly, but after 2 days I get this error and the stream isn't working. (Might have nothing to do with the problem) The file is .movpkg and the path is correct. I would like to know what -42800 means. And how can I fix it.
Since feedback assitant does not allow bug reports in beta-2, I'll drop this here.Howdy, I just installed Xcode 11 beta 2, and ran my slightly modified version of the UIDocumentBrowserViewController-based template app, which was working the last time I tried it. However, in Xcode 11 beta 2, in the iPad simulator, it no longer works. I have another app which uses the same template, but had been modified to click the checkbox and run for Mac, and it has the same trouble.Here are the error logs[DocumentManager] Failed to get the remote browser View Controller with error (Error Domain=NSCocoaErrorDomain Code=4097 connection on anonymousListener or serviceListener from pid #### UserInfo={NSDebugDescription=connection on anonymousListener or serviceListener from pid ####})[DocumentManager] Remote view controller crashed with error: Error Domain=NSCocoaErrorDomain Code=4097 connection on anonymousListener or serviceListener from pid #### UserInfo={NSDebugDescription=conne
Using XCode: Version 8.2.1 (8C1002)I have a view that contains several UIImage views and several TextFields. One UIImageView sits in the lower left part of the view near the alignment guides. Above that UIImageView sits a TextField whose bottom edge should be 4 pixels above the UIImageView's top edge. So I set a vertical constraint as:Constant <= 4Priority = 750Multiplier = 1//-------------------------------------------- //| enclosing_view //| // // // // // // ------------ // | 00 | // |___________| // <constraint is here> // ------------- // | | // | image_view | // |____________| // //|_____________________________________________This is in the smallest device view (iPhone 4s). As I go up the device views the TextField jumps to near the center of the view. The constraint has jummped to over 70 pixels! This is the only constraint on the entire ViewController. That does mean I'm missing some constraints but this is the ONLY constraint! What could be overridding the <= 4?So two questions:
Is it possible to have two xcode version on mac in high sierra, if yes how? ,Thanx in advance.
How is a Universal 2 binary different than the original Universal binary? Why is a new format needed?
Hello,I have two projects. One is written in Swift 3, while the other is written in Objective C. Both compile and run fine.I have tried to add the Objective C project into Swift by adding files to the project. The project won't build because it can't import the bridging header. I have spent two days on this and am certain that I am correctly specifying the location of the bridging header and header files under build settings. I'm now looking for an alternative approach to merging these projects.From Apple: In addition to organizing all the files in each Xcode project, a workspace provides implicit and explicit relationships among the included projects and their targets.Does this mean if I add the two projects to a Workspace that I can build the two targets into one target resulting in one product? I read something about using schemes, but the post wasn't detailed. I'm running Xcode 8 and Swift 3.Thanks!
I'm working with an existing Xcode workspace from Xcode 9 on 9.1 beta 2. My minimum target is iOS 9.0 for this project. This is in Swift and Objective-C source files. These problems all seem related to code parsing/build image processing. Here's each problem I've noticed:1. If I try to use auto complete on a property in code, such as self.searchController, I don't get any autocompletions on typing the period in self. or at the end of self.searchController.. The autocomplete keyboard shortcut doesn't help either. The tooltip says No Completions, even though the code builds with a valid property after self.searchController, such as self.searchController.searchResultsUpdater.2. If I type self. it doesn't show me the red syntax error in the gutter on the editor window. If I build, I get the expected build error.3. I no longer get the edit all-in-scope functionality. There used to be a dropdown arrow that no longer appears and the button on the touchbar for the same doe
ps: i'm getting two conflicting messages: Credential State request returned with error: Error Domain=AKAuthenticationError Code=-7073 this is printed to the console and credentialState 2, error Domain=com.apple.AuthenticationServices.AuthorizationError Code=1000 (null) this is the error message i'm getting back in the callback (different codes? why?)
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I was trying to communicate with a service with two way SSL from a watch.I found the connection was cancelled immediately after the client (watch) provide the client certificate, by calling completeHandler(NSURLSessionAuthChallengeUseCredential, credential).The error got is NSURLErrorDomain Code=-999 cancelled.But I've tried run the same piece of code on a phone, it did succeed. Apart from two way ssl, all other requests work fine on the watch.Since, the frameworks on watchOS and iOS are different, I am wondering if that might be an issue for WatchOS? Or is there anything specifically need to be configured for the watch?Cheers.
Has anyone been able to download the WatchOS 2 GM at all? If so how exactly did you do it, as I'm showing as no update available.
Hello! I would like to clarify some things regarding Apple Developer Program License Agreement (Schedule 2).i live in Belarus. And for my tax service it is important to know for what exact services Apple takes a commission of 30%.a) in p.3.4 it says: Apple shall be entitled to the following commissions in consideration for its services as Your agent and/or commissionaire under this Schedule 2: - For sales of Licensed Applications to End-Users... ...Apple shall be entitled to a commission equal to thirty percent (30%) of all prices payable by each End-User.What is this service? It is important to know whether these are marketing(promotions/advertising) services or sales services.b) in p.1.1 it says that Apple acts as my agent («Your agent for the marketing and delivery of the Licensed Applications to End-Users»). Could you please explain what is meant by marketing? Is te meaning for marketing the same as <Promotions> or <Sale>? What exact services are included in the marketing?c)T
Ok, so in my app I have got two textfields, one label and one button. I manage to get the content of the one textfield to be displayed in the label, but i want to display the content of both of the textfields.@IBAction func buttonPushed(sender: UIButton) { Label.text = (textfield1.text) + (textfield2.text)The code above is the closest I´ve com, but the Label displays: Optionalwhatever i typed in the textfieldOptionalwhatever i typed in the textfield
After following the correct procedures to start launching our in house app I get the following message. In House distribution provisioning profiles for this account will be available two weeks after program activation. Why do I have to wait two weeks for this? We really need to launch this app ASAP. Please can someone explain the reason so I can feed back to the business.