views:

165

answers:

1

I have an Action Sheet popping up and I want to pass a certain argument to a button processing method.

For example:

I have a table and I want to pass to a button processing method row number that was selected in a table.

How can I achieve this?

+2  A: 

You would have to set this in your delegate ahead of time. You can then use this value when your delegate receives the button press notification.

Andrew Grant