CooperRS / RMActionController

This is an iOS control for presenting any UIView in an UIAlertController like manner
MIT License
539 stars 59 forks source link

Is possible add new action like UIAlertController? #13

Closed alfio86 closed 8 years ago

alfio86 commented 8 years ago

Hello, In iOS with UIAlertController you can set many action with: [alert addAction:action]; [alert addAction:action2]; [alert addAction:action3]; Etc... Here apparently only two action (one is cancel). Is there a way to have only a list of buttons with this cool design?

CooperRS commented 8 years ago

Hi,

yes, this is definitely possible. You may take a look at the Tests to see an example (for example this one).

Just call addAction: multiple times and you can add as many actions as you want.

Best regards, Roland