0
votes
1answer
123 views

Ember.js: action with explicit target fails

I guess I'm missing something really basic, but the following fails with The action 'login' did not exist on App.AppController. Template: <h2>Click the button and watch the console</h2> ...
0
votes
1answer
58 views

How to add UIViewController as target for a programmatically added subview like in IB

When adding UIViews in Xcode's interface builder you can use Ctrl+drag to create a target-action to the UIViewController that holds that view. You can also do that to any subviews you add using IB. ...
1
vote
1answer
102 views

UINavigationCotroller backBarButtonItem with other target than self

I am trying to change the action executed by pressing the backBarButtonItem of a Navigation Controller. I know that i have to edit the backBarButtonItem before the next view (on which the button with ...
1
vote
1answer
152 views

Do you have to call removeTarget on UIButton?

In my app I create a bunch of UIButtons programmatically. Now when I add an action when the user taps the buttons, I do addTarget obviously. Now when I leave this view do I or should I call ...
1
vote
2answers
401 views

Subclass of NSButton: call of action method crashes

In my application there is a subclass of NSWindowController. In - (void)awakeFromNib I create an instance of a NSView subclass to create a bottom placed button bar: self.buttonBar = [[CNButtonBar ...
0
votes
2answers
96 views

ARC frees my view controller view is visible

I have a simple app with a single view, on it there's a button. When clicking the button, it adds a 2nd view. This 2nd view has a simple toolbar with a single UIBarButtonItem on it. It is registered ...
0
votes
1answer
80 views

How to use Cocoa's Responder Chain when Application is Minimized

I'm using the responder chain (sendAction:to:from:) to communicate from sub-views up to the document. The problem is when the window is minimized, if there are any actions still occurring, they fail ...
0
votes
1answer
200 views

Cocos2d: CCCallFuncO with target as parent

I can't seem to get CCCallFuncO working with actionWithTarget set to (JoinedMapsLayer*)self.parent JoinedMapsLayer is the parent node that a sprite class gets added to. Inside the sprite class I ...
2
votes
1answer
410 views

Clear/Remove all connections in a Xcode project

I'm a newbie to Xcode, Objective-C and iOS programming (fully comfortable in R however, so familiar with programming concepts). I'm working my way through building my first app using a couple of ...
0
votes
1answer
616 views

NSMenuItem target and action

I would like to have help about binding a function to NSMenuItem. I have an array of object Tab and I would like to draw an NSMenuItem for each of the Tab objects. I succeed in drawing and adding the ...
0
votes
1answer
1k views

How to create custom target/action in iOS

I have two views A and B. They are booth in the same controller as subviews of a main UIVIew. View A has a button. I want that button to throw an event when it gets touched which will be listen by ...
1
vote
3answers
3k views

UI Element setAction and setTarget not working

I found some answers to my question but it still does not work. I have setup a button in IB and I want to setup the action and target by code(just for learning). I have a function in my ...
1
vote
2answers
495 views

Why for only some actions must I call setTarget?

For most actions, I just click and drag in InterfaceBuilder to "wire up" a call from some interface object to my code. For example, if I want to know when the user single-clicks a row in a table, I ...
4
votes
4answers
24k views

How to set target and action for UIBarButtonItem at runtime

Tried this but only works for UIButton: [btn setTarget:self action:@selector(btnClicked:) forControlEvents:UIControlEventTouchUpInside];
2
votes
1answer
1k views

Custom NSControl target/action howto!

I have a custom NSControl that acts as sort of a two dimensional slider where you can drag a handle around the view. I added a few class specific methods and the only ones I overrode were the mouse ...