Can someone please advise how to do this in ASOC without the use of bindings.
I am not a bindings fan as I like to see the code at work.
[mTableView setDoubleAction:@selector(doubleClickInTable:)];
Thanks
Terry
Can someone please advise how to do this in ASOC without the use of bindings.
I am not a bindings fan as I like to see the code at work.
[mTableView setDoubleAction:@selector(doubleClickInTable:)];
Thanks
Terry
Hi,
I figured it:
Forgot to call setTarget first.
The solution is:
mTableView's setTarget_(me)
mTableView's setDoubleAction_("doubleClickInTable:")