Here's a an issue I'm having:
I'm trying to create control array of buttons on a controller, and have a subview place to them on the screen. A scenario like the Stocks App.
I can get the buttons to layout and look exactly how I want, but when I implement the buttons as an array of buttons (NSMutableArray), I can't get the action to fire in the controller.
If I remove the array and just create a bunch of buttons - it works (just longer-winded code).
Should I be able to do this? I'm wondering if when I pass the controls as views to the subview if I'm losing something or not retaining something I should...
Any ideas? any examples of button control arrays? All the samples are individual buttons
I'm trying to create control array of buttons on a controller, and have a subview place to them on the screen. A scenario like the Stocks App.
I can get the buttons to layout and look exactly how I want, but when I implement the buttons as an array of buttons (NSMutableArray), I can't get the action to fire in the controller.
If I remove the array and just create a bunch of buttons - it works (just longer-winded code).
Should I be able to do this? I'm wondering if when I pass the controls as views to the subview if I'm losing something or not retaining something I should...
Any ideas? any examples of button control arrays? All the samples are individual buttons