Re: xcode creating actions and outlets

2013-09-05 Thread Steve Holmes
: Re: xcode creating actions and outlets believe me i understand the frustrations of working with objective C, especially if it’s new. As it happens I find that programmatically linking your UI elements tends to actually work a little better (as it gives you much more control

Beginning Obj-C/Xcode (was Re: xcode creating actions and outlets)

2013-09-05 Thread Alex Hall
creating actions and outlets believe me i understand the frustrations of working with objective C, especially if it’s new. As it happens I find that programmatically linking your UI elements tends to actually work a little better (as it gives you much more control), but for each person it’s

Re: xcode creating actions and outlets

2013-09-05 Thread Barry Hadder
of the APIS? Can you point us in the right direction? Thanks so much. From: macvisionaries@googlegroups.com [mailto:macvisionaries@googlegroups.com] On Behalf OfTyler Thompson Sent: Friday, July 5, 2013 2:13 AM To: macvisionaries@googlegroups.com Subject: Re: xcode creating actions

Re: xcode creating actions and outlets

2013-08-28 Thread Tyler Thompson
Send me your Xcode project and let me take a look at what's going on, I won't have steady internet access for just a bit but I'll take a look ASAP Sent from my iPhone On Aug 28, 2013, at 13:36, Alex Hall mehg...@gmail.com wrote: I know it has been some time since this thread ended, but I

Re: xcode creating actions and outlets

2013-07-08 Thread Yuma Antoine Decaux
Actually, it's not gcc anymore but lvm something. I read it in one of the objective c primers, starting x-code 4.5 As for testing the code, there is one called code runner which i found on the appstore, which i quite like as it's small footprint, compatible with 10 languages, including

Re: xcode creating actions and outlets

2013-07-07 Thread Paul Hunt
Hello Yuma. If you aren't using XCode to learn Objective-C, what compiler are you using? On Jul 6, 2013, at 8:30 PM, Yuma Antoine Decaux jamy...@gmail.com wrote: Yuma -- You received this message because you are subscribed to the Google Groups MacVisionaries group. To unsubscribe from

Re: xcode creating actions and outlets

2013-07-07 Thread Yuma Antoine Decaux
Sorry, i didn't mention not using x-code, but more in the attempt of harnessing the syntax used in objective c rather than concentrating on the interface or IB in x-code for now. Light has no value without darkness On 7/07/2013, at 8:11 PM, Paul Hunt prhu...@att.net wrote: Hello Yuma. If

Re: xcode creating actions and outlets

2013-07-07 Thread Jonathan C. Cohn
I believe Xccode still uses gccunder the hood. Sent from my iPhone On Jul 7, 2013, at 8:21 PM, Yuma Antoine Decaux jamy...@gmail.com wrote: Sorry, i didn't mention not using x-code, but more in the attempt of harnessing the syntax used in objective c rather than concentrating on the

Re: xcode creating actions and outlets

2013-07-07 Thread Jonathan C. Cohn
Gcc that was. It certainly has a objective c compiler. Sent from my iPhone On Jul 7, 2013, at 8:50 PM, Jonathan C. Cohn jon.c.c...@gmail.com wrote: I believe Xccode still uses gccunder the hood. Sent from my iPhone On Jul 7, 2013, at 8:21 PM, Yuma Antoine Decaux jamy...@gmail.com

Re: xcode creating actions and outlets

2013-07-07 Thread Paul Hunt
Hello Yuma. You will need some kind of compiler or IDE to practice with. How do you plan to proceed? On Jul 7, 2013, at 7:21 PM, Yuma Antoine Decaux jamy...@gmail.com wrote: Sorry, i didn't mention not using x-code, but more in the attempt of harnessing the syntax used in objective c rather

Re: xcode creating actions and outlets

2013-07-05 Thread Yuma Antoine Decaux
Hi, There is a method which i found on the maccessibility news page. Convoluted, and not able to do it yet, it's driving me crazy. I might try it programmatically but i'm going through a textbook method and they're entirely gui based so i'm left wanting, once more. Starting to get tired of

Re: xcode creating actions and outlets

2013-07-05 Thread Tyler Thompson
believe me i understand the frustrations of working with objective C, especially if it’s new. As it happens I find that programmatically linking your UI elements tends to actually work a little better (as it gives you much more control), but for each person it’s different :) On Jul 5, 2013,

Re: xcode creating actions and outlets

2013-07-05 Thread Yuma Antoine Decaux
Do you have a link where i can see where i'm supposed to programmatically link controls? I know there are statements to include in controller.h controller.m and application.xib, but im not sure what i'm supposed to write in application.xib Any help greatly appreciated. I've given up on

Re: xcode creating actions and outlets

2013-07-05 Thread Tyler Thompson
Let me start out by saying you don’t actually ever #include/#import the xib, (that’s the user interface file and even when you’ve chosen to use the interface builder you don’t ever include it anywhere) I can tell you that stack overflow is a wonderful resource for any objective c/cocoa help.

RE: xcode creating actions and outlets

2013-07-05 Thread Paul Hunt
[mailto:macvisionaries@googlegroups.com] On Behalf Of Tyler Thompson Sent: Friday, July 5, 2013 2:13 AM To: macvisionaries@googlegroups.com Subject: Re: xcode creating actions and outlets believe me i understand the frustrations of working with objective C, especially if it's new. As it happens I find

Re: xcode creating actions and outlets

2013-07-05 Thread Tyler Thompson
Thompson Sent: Friday, July 5, 2013 2:13 AM To: macvisionaries@googlegroups.com Subject: Re: xcode creating actions and outlets believe me i understand the frustrations of working with objective C, especially if it’s new. As it happens I find that programmatically linking your UI elements tends

Re: xcode creating actions and outlets

2013-07-05 Thread Barry Hadder
] On Behalf OfTyler Thompson Sent: Friday, July 5, 2013 2:13 AM To: macvisionaries@googlegroups.com Subject: Re: xcode creating actions and outlets believe me i understand the frustrations of working with objective C, especially if it’s new. As it happens I find that programmatically linking your UI

Re: xcode creating actions and outlets

2013-07-05 Thread Alex Hall
[mailto:macvisionaries@googlegroups.com] On Behalf OfTyler Thompson Sent: Friday, July 5, 2013 2:13 AM To: macvisionaries@googlegroups.com Subject: Re: xcode creating actions and outlets believe me i understand the frustrations of working with objective C, especially if it’s new. As it happens I find

Re: xcode creating actions and outlets

2013-07-05 Thread Tyler Thompson
of all of the APIS? Can you point us in the right direction? Thanks so much. From: macvisionaries@googlegroups.com [mailto:macvisionaries@googlegroups.com] On Behalf OfTyler Thompson Sent: Friday, July 5, 2013 2:13 AM To: macvisionaries@googlegroups.com Subject: Re: xcode creating

xcode creating actions and outlets

2013-07-04 Thread Yuma Antoine Decaux
Hi All, I am going through an IOS book right now, and am stuck at a point where i need to create an action in my controller for a button. I'm supposed to control drag a button to my assistant editor so that x code can automatically place the appropriate action method and properties to my

Re: xcode creating actions and outlets

2013-07-04 Thread Tyler Thompson
I can’t speak to the voiceOver side of things but i know most blind developers i’ve spoken to just simply don’t use the interface builder at all, no reason you can’t initialize your object and hook it up to your method with NSNotifications or it’s delegate method, a little more specifics on

Re: xcode creating actions and outlets

2013-07-04 Thread Tyler Thompson
To tack on to my previous comment here’s how you can programatically link objects with objective c NSButton *theButton; [theButton addTarget:self action:@selector(buttonMethod:) forControlEvents:someControlEvent]; On Jul 4, 2013, at 10:23 PM, Yuma Antoine Decaux jamy...@gmail.com wrote: Hi