Xcode Issue Navigator

2013-11-16 Thread Nimesh Neema
Hi folks, Whenever a build or run command is invoked in Xcode, the issue navigator opens up automatically (the navigation area opens up if it is not). Is there a way to disable it, as I do not want it to be shown all the times ? ​ ​ Best Nimesh Neema Mob: +91-900-920-5184

Re: Resolving a file reference from the iTunes plist

2013-11-16 Thread Charles Constant
Thanks for the suggestion but iTunesRecentDatabases doesn't address the problem. The trouble is that I must be able, not only to read, but also to write to the location. This is because I am writing the script to switch between multiple libraries upon starting iTunes. On Fri, Nov 8, 2013 at

CVPixelBufferCreateWithPlanarBytes does not execute callback when released

2013-11-16 Thread Matthieu Bouron
Hello, First of all, sorry in advance if i'm not addressing the right mailing list. I'm currently using the CVPixelBufferRef API and more precisely the CVPixelBufferCreateWithPlanarBytes function so I can use my own video buffers. This function let the user provide a callback so the user can

dataWithPDFInsideRect: subview positions when using layer backed views

2013-11-16 Thread Gideon King
Here’s the scenario: All views are flipped. OSX 10.9. I have a view with frame and bounds 0,0,2000,2000. The first subview has a frame 0,0,2000,2000 and bounds -1000,-1000,2000,2000. I set it to draw a solid color. On screen it covers the first view. It has a number of small 100,50 subviews at

Re: Xcode Issue Navigator

2013-11-16 Thread Roland King
Xcode - Preferences - Behaviors On 8 Nov, 2013, at 6:39 pm, Nimesh Neema nimeshne...@gmail.com wrote: Hi folks, Whenever a build or run command is invoked in Xcode, the issue navigator opens up automatically (the navigation area opens up if it is not). Is there a way to disable it, as

Stale xib files

2013-11-16 Thread Koen van der Drift
I'm in the process of removing some xibs, and construct my views in the ViewController. As it turns out, the app in the simulator or my device don't recognize that the xib was removed, and I need to completely reset the simulator, clean my build and build-folder, and then it works. My question

Re: Stale xib files

2013-11-16 Thread Kevin Muldoon
I've experienced this as well, switching from xib to code. As far as I know, a clean install is only answer. Sent from my iPhone On Nov 16, 2013, at 12:26 PM, Koen van der Drift koenvanderdr...@gmail.com wrote: I'm in the process of removing some xibs, and construct my views in the

Re: No Accessibility for Many Status Items

2013-11-16 Thread Jerry Krinock
On 2013 Nov 15, at 23:05, Martin Hewitson martin.hewit...@aei.mpg.de wrote: navigating works properly for … iStatMenus Ah, that’s interesting. That would make iStatMenus the first non-Apple status item that I’ve seen that was not skipped in the loop. Checking into that a little, I see that

Re: Normalizing a path containing a symlink

2013-11-16 Thread Mike Abdullah
How about using -fileReferenceURL on everything? That won't give you a normalized *path* as such, but should give you consistent URLs for identifying individual files Mike. Sent from my iPhone On 14 Nov 2013, at 03:27 am, Rick Mann rm...@latencyzero.com wrote: In my iOS app, I create a

Re: Normalizing a path containing a symlink

2013-11-16 Thread Charles Srstka
On Nov 16, 2013, at 12:24 PM, Mike Abdullah mabdul...@karelia.com wrote: How about using -fileReferenceURL on everything? That won't give you a normalized *path* as such, but should give you consistent URLs for identifying individual files Mike. You could also use

Re: No Accessibility for Many Status Items

2013-11-16 Thread Stephane Madrau
Le 16 nov. 2013 à 18:57, cocoa-dev-requ...@lists.apple.com a écrit : On 2013 Nov 15, at 23:05, Martin Hewitson martin.hewit...@aei.mpg.de wrote: navigating works properly for … iStatMenus Ah, that’s interesting. That would make iStatMenus the first non-Apple status item that I’ve seen

Re: No Accessibility for Many Status Items

2013-11-16 Thread Bill Cheeseman
On Nov 16, 2013, at 12:55 PM, Jerry Krinock je...@ieee.org wrote: So it looks like maybe Apple is doing this on purpose, or that it is deemed *vey* difficult to fix. But neither one of these seems plausible to me. What possible reason could there be for restricting keyboard

Re: Normalizing a path containing a symlink

2013-11-16 Thread Rick Mann
The thing I'm trying to accomplish is to iterate all the files in a subtree, and then compute the last few parts of the path from that top-level directory. I get the top-level directory by asking for the documents directory, and it gives me /var/.../Documents/ (to which I append Foo). I then

Re: Stale xib files

2013-11-16 Thread Koen van der Drift
I found a solution (thanks to SO). I moved the view creating code from viewDidLoad to loadView. And call [super loadView] first. - Koen. On Nov 16, 2013, at 12:54 PM, Kevin Muldoon caoimgh...@gmail.com wrote: I've experienced this as well, switching from xib to code. As far as I know, a

Re: Stale xib files

2013-11-16 Thread Kevin Muldoon
Nice!!! Sent from my iPhone On Nov 16, 2013, at 4:34 PM, Koen van der Drift koenvanderdr...@gmail.com wrote: I found a solution (thanks to SO). I moved the view creating code from viewDidLoad to loadView. And call [super loadView] first. - Koen. On Nov 16, 2013, at 12:54 PM,

Re: Stale xib files

2013-11-16 Thread Roland King
The process of updating apps from the appstore is different from installing in the sim or copying to the device, it creates an entirely new directory with the app bundle, installs the new app and then copies the user data over. So you shouldn't need to do anything special for your users (as

Displaying untrusted certificate information in iOS app

2013-11-16 Thread Devarshi Kulshreshtha
In my iOS app, I am trying to connect to a server, which has untrusted certificate. I am handling this situation by following the procedure as specified in this url: https://developer.apple.com/library/mac/documentation/cocoa/conceptual/urlloadingsystem/Articles/AuthenticationChallenges.html

Re: Displaying untrusted certificate information in iOS app

2013-11-16 Thread Jens Alfke
On Nov 16, 2013, at 6:41 PM, Devarshi Kulshreshtha devarshi.bluec...@gmail.com wrote: Q1. How can I obtain above enlisted information? Is there any cocoa API to provide the same? SecCertificateRef Q2. Generally in a web browser it presents all details related to that certificate. Do we

Re: Displaying untrusted certificate information in iOS app

2013-11-16 Thread Devarshi Kulshreshtha
one more quick question.. how can I extract information from this class: SecCertificateRef Its syntax seems to be very weird as compared to normal cocoa classes :-( If you can give some example of extracting - organization name, email address, and expiry date, it will be very helpful. On Sat,

Re: Displaying untrusted certificate information in iOS app

2013-11-16 Thread Roland King
on iOS .. unless any new security api points were added in the last release or two, it's not very easy. iOS is pretty weak here and my bugreport asking for more security API points remains open. You can call SecCertificateCopyData which gives you a DER encoded X.509 cert which you then stick

Re: Displaying untrusted certificate information in iOS app

2013-11-16 Thread Jens Alfke
On Nov 16, 2013, at 7:17 PM, Roland King r...@rols.org wrote: on iOS .. unless any new security api points were added in the last release or two, it's not very easy. iOS is pretty weak here and my bugreport asking for more security API points remains open. Oh, right, iOS. :-p Yes, for

Re: Normalizing a path containing a symlink

2013-11-16 Thread Ken Thomases
On Nov 16, 2013, at 3:28 PM, Rick Mann wrote: The thing I'm trying to accomplish is to iterate all the files in a subtree, and then compute the last few parts of the path from that top-level directory. I get the top-level directory by asking for the documents directory, and it gives me

Re: Normalizing a path containing a symlink

2013-11-16 Thread Rick Mann
On Nov 16, 2013, at 21:31 , Ken Thomases k...@codeweavers.com wrote: On Nov 16, 2013, at 3:28 PM, Rick Mann wrote: The thing I'm trying to accomplish is to iterate all the files in a subtree, and then compute the last few parts of the path from that top-level directory. I get the