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, at 1:05 AM, Yuma Antoine Decaux <[email protected]> wrote: > 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 the whole idea of computers. > > Feel like throwing this macbook out and hammer it > > > > > "Light has no value without darkness" > > > > On 5/07/2013, at 12:28 PM, Tyler Thompson <[email protected]> wrote: > >> 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 <[email protected]> wrote: >> >>> 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 >>> project.h, project.m and project.xib files. But there is no control drag in >>> voice over. >>> >>> Is this another unsurmountable obstacle or is there actually a method to do >>> this? >>> >>> Any help greatly appreciated >>> >>> Best regards, >>> >>> Yuma >>> >>> >>> >>> "Light has no value without darkness" >>> >>> >>> >>> >>> "Light has no value without darkness" >>> >>> >>> >>> >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "MacVisionaries" group. >>> To unsubscribe from this group and stop receiving emails from it, send an >>> email to [email protected]. >>> To post to this group, send email to [email protected]. >>> Visit this group at http://groups.google.com/group/macvisionaries. >>> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "MacVisionaries" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To post to this group, send email to [email protected]. >> Visit this group at http://groups.google.com/group/macvisionaries. >> For more options, visit https://groups.google.com/groups/opt_out. >> >> > > > -- > You received this message because you are subscribed to the Google Groups > "MacVisionaries" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/macvisionaries. > For more options, visit https://groups.google.com/groups/opt_out. -- You received this message because you are subscribed to the Google Groups "MacVisionaries" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/macvisionaries. For more options, visit https://groups.google.com/groups/opt_out.
