UIAppearance for iOS provided view controllers

2013-04-20 Thread Alex Kac
We customize the look of UIBarButtonItems in our app - which looks and works great EXCEPT it also applies to the iOS provided view controllers which do NOT look correct. Here is what we're doing: id barButtonItemProxy = [UIBarButtonItem appearanceWhenContainedIn:[UINavigationController

Re: Clang "File not found" - in cocoa app

2013-04-20 Thread Charles Srstka
On Apr 18, 2013, at 2:51 AM, Christ Levesque wrote: > I used clang in my cocoa app but it doesn't find Clang/Index.h. The error is > "File not found". I linked to clang but again it doesn't find it. Anybody > knows what's the problem. Assuming you're trying to use libclang for something, the p

Re: Clang "File not found" - in cocoa app

2013-04-20 Thread Nick Zitzmann
On Apr 18, 2013, at 1:51 AM, Christ Levesque wrote: > I used clang in my cocoa app but it doesn't find Clang/Index.h. The error is > "File not found". I linked to clang but again it doesn't find it. Anybody > knows what's the problem. What are you trying to accomplish? Nick Zitzmann

Re: Problems converting to ARC

2013-04-20 Thread Ken Thomases
On Apr 18, 2013, at 2:45 AM, Christ Levesque wrote: > I want to convert my code to ARC but this problems doesn't let me to do this. > I read the errors but I couldn't do nothing. All the problems are in these > else if statement and are colored Red. > > else if (isupper(character)){ > 1)

Re: NSInvocation's getArgument & setReurnValue question

2013-04-20 Thread Ken Thomases
On Apr 18, 2013, at 2:27 AM, Christ Levesque wrote: > I used - getArgument:atIndex: method but it gives me error. I don't know > what's the problem. I used this as below: > > if ([component isEqualToString: @"class"]) { >1) id arg; >2) [invocation getArgument: &arg atIndex: i + 2]; >

Re: Temporarily disabling autosave

2013-04-20 Thread Mike Abdullah
On 20 Apr 2013, at 04:17, Steve Mills wrote: > On Apr 19, 2013, at 16:51:20, Jerry Krinock > wrote: > >> Maybe you Steve and Alex Zavatone may be on to something there. You're >> suggesting that, rather than handling the autosave when it is requested >> during a long-winded operation, you t

Re: Preferences for network login

2013-04-20 Thread Matt DeFoor
When dealing with different sources of authentication via AD and LDAPv3 plug-ins, there are two types of accounts that people refer to. They are: Network accounts Mobile accounts Network accounts basically mean the user authenticates against an authentication authority other than the local host a

Re: Temporarily disabling autosave

2013-04-20 Thread Mike Abdullah
On 19 Apr 2013, at 21:42, Jerry Krinock wrote: > > On 2013 Apr 19, at 12:37, Mike Abdullah wrote: > >> Why, what's wrong with cancelling a [auto]save? > > That's a damned good question, Mike. You're probably thinking that, hey, we > lived without any autosaves from 1984 to 2011. What's th

Re: Temporarily disabling autosave

2013-04-20 Thread Mike Abdullah
On 19 Apr 2013, at 21:22, Quincey Morris wrote: > On Apr 19, 2013, at 13:04 , Steve Mills wrote: > > c. If the autosave is asynchronous, you can just not return from it until > playback finishes. Note, however, this does not prevent another autosave from > arriving after some time interval,

Re: Temporarily disabling autosave

2013-04-20 Thread Mike Abdullah
On 19 Apr 2013, at 21:04, Steve Mills wrote: > On Apr 19, 2013, at 14:37:11, Mike Abdullah wrote: > >> Why, what's wrong with cancelling a save? > > It just seems icky. Who knows what behavior this will cause in the future? I > just tried this approach, and it works the same as when I tried