Search results for

eskimo

34,935 results found

Post

Replies

Boosts

Views

Activity

Reply to NSMutableURLRequest timeoutInterval is not working?
I've seen reports of this in the past but never been able to nail down the circumstances under which it happens. I'd like to dig into this but that's not something I can do in the context of DevForums. If you'd like to open a DTS tech support incident, we can pick things up there.<https://developer.apple.com/support/technical/submit/>Alternatively, if you just want to work around this and then move on, you can run the request asynchronously and use an NSTimer to enforce whatever timeout you require.Share and Enjoy--Quinn The Eskimo!Apple Developer Relations, Developer Technical Support, Core OS/Hardware
Jun ’15
Reply to Potential security bug in iMessage
> Is Bug Reporter the best/fastest way to report security bugs?Filing a bug is always a good idea. Thanks for doing that.Beyond that, the following page has more details on Apple Product Security.<https://www.apple.com/support/security/>Share and Enjoy--Quinn The Eskimo!Apple Developer Relations, Developer Technical Support, Core OS/Hardware
Topic: Privacy & Security SubTopic: General Tags:
Jun ’15
Reply to Logins not working in ios9
> With iOS9. App Store does not work musts keeps asking for login over> and over and over again same goes for yahoo through the mail appYou should file a bug about this.<https://developer.apple.com/bug-reporting/>Please post your bug number, just for the record.Also, I've moved your question over to the Pre-Release > iOS 9 beta topic area, just in case someone else has seen this and has a workaround suggestion.Share and Enjoy--Quinn The Eskimo!Apple Developer Relations, Developer Technical Support, Core OS/Hardware
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to IOPCIMatch
I'm not 100% sure what's going on here but it looks like you have a problem with the matching dictionary in your KEXT that's causing the kernel's PCI bridge matching code to crash.Here's a semi-symbolicated section of the top of the stack during the crash.1 mach_kernel 0xffffff800cd2bda1 2 mach_kernel 0xffffff800ce17cc2 3 mach_kernel 0xffffff800ce34b73 4 mach_kernel 0xffffff800d311a93 5 com.apple.iokit.IOPCIFamily 0xffffff7f8d52c471 IOPCIBridge::matchKeys(...) 6 com.apple.iokit.IOPCIFamily 0xffffff7f8d52c556 IOPCIBridge::pciMatchNub(...) 7 com.apple.iokit.IOPCIFamily 0xffffff7f8d52c5ba IOPCIBridge::matchNubWithPropertyTable(...) ...Frame 5 is the critical one. This looks like the first call to strtoul in IOPCIBridge::matchKeys in the following file.<http://www.opensource.apple.com/source/IOPCIFamily/IOPCIFamily-239.1.2/IOPCIBridge.cpp>btw You might want to look at TN2063 Understanding and Debugging Kernel Panics.<https://developer.apple.com/library/mac/technotes/tn2063/_index.html#//apple_ref/doc/uid
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to For creating a pseudo file system like procfs, sshfs etc. are there any alternatives to OSXFUSE and if yes what are the pros and cons of each?
> For creating a pseudo file system like procfs, sshfs etc. are there> any alternatives to OSXFUSE [...]The obvious alternative is to build your own VFS plug-in. This allows you to tailor things to your exact needs but it's a lot more work.To get a more considered reply you should post more details about your high-level goal. In my experience plugging in at the file system layer is rarely a good option on OS X.Share and Enjoy--Quinn The Eskimo!Apple Developer Relations, Developer Technical Support, Core OS/Hardware
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to NSMutableURLRequest timeoutInterval is not working?
> I have summit a DTS incident and sent sample app source in reply to> the mail from DTS.Cool. I will pick things up there.> If I could I would upload my sample source code here, in case anyone> else willing to test and help, but I can not find a way to upload file> here.Alas the forums do not support attachments, although it is something we're looking into <rdar://problem/20971255> <rdar://problem/20971224>.Share and Enjoy--Quinn The Eskimo!Apple Developer Relations, Developer Technical Support, Core OS/Hardware
Jun ’15
Reply to Packet Tunnel Provider for custom VPN Protocol
As you might imagine there's been a /lot/ of interest in developing Network Extension providers. There's also been a bit of an administrative delay at our end coming up to speed on this. We hope to deal with the request backlog soon, but I don't have any specific timeline to share with you right now.> Should I just wait for a reply?Yes. The fact that you got the auto ACK means you're definitely in our system and we will get back to you eventually.Sorry about the delay.Share and Enjoy--Quinn The Eskimo!Apple Developer Relations, Developer Technical Support, Core OS/Hardware
Jun ’15
Reply to developer tools group
What does DevToolsSecurity says about your developer tools setup? For example, on my machine it says:$ DevToolsSecurity -status Developer mode is currently enabled.Share and Enjoy--Quinn The Eskimo!Apple Developer Relations, Developer Technical Support, Core OS/Hardware
Jun ’15
Reply to Audio is not working.
> fatal error: unexpectedly found nil while unwrapping an Optional valueThis is a pretty straightforward Swift runtime error: it means that Swift has tried to get the value out of an Optional value and got nil instead. Given the code you posted it's likely that this is related to ButtonAudioURL, probably because the file simply isn't available in your bundle.btw Constructing a file URL from a path from a bundle is weird. Why not use one of NSBundle -URLForResource:xxx calls?Share and Enjoy--Quinn The Eskimo!Apple Developer Relations, Developer Technical Support, Core OS/Hardware
Jun ’15
Reply to How do I know which Foundation classes implement custom isEqual and not just inherit NSObject implementation?
> I used the sample with UILocationNotification [...]UILocationNotification is a particularly interesting case because local notifications get persisted to disk. The last time I looked at UILocationNotification it had an internal UUID that it used to track each notifications through various stages of its lifecycle, and -isEqual: was keyed off that.Share and Enjoy--Quinn The Eskimo!Apple Developer Relations, Developer Technical Support, Core OS/Hardware
Topic: Programming Languages SubTopic: General Tags:
Jun ’15
Reply to Swift memory security
> Does Swift/OSX/iOS make any guarantees about what happens to the> password bytes?No.> How about the buffer that was used to return results by the Keychain> API?No.As HyperNovaSoftware mentioned, this protection is enforced by the OS at process boundaries.Share and Enjoy--Quinn The Eskimo!Apple Developer Relations, Developer Technical Support, Core OS/Hardware
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
Reply to Swift, XML file store, access and Edit in IOS file System
The general strategy here is:1. get the XML from your web service using NSURLSession2. parse it into some internal representation using NSXMLParser or libxml23. modify that internal representation4. render it to XML using libxml25. send the XML back to your web service using NSURLSessionNone of these steps are particularly Swift specific, so if you have follow-up questions you'd be better off posting them an appropriate topic-specific area.Share and Enjoy--Quinn The Eskimo!Apple Developer Relations, Developer Technical Support, Core OS/Hardware
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15