I create a custom view which has exactly same function as UIAlertView. It also has instance method same as UIAlertView. I take a look at documentation, here is the method declareation "- (id)initWithTitle:(NSString *)title message:(NSString *)message delegate:(id)delegate cancelButtonTitle:(NSString *)cancelButtonTitle otherButtonTitles:(NSString *)otherButtonTitles, ..."
So I want to know in the method implementation, how do I know how many buttons are returned and get their titles in my custom view.
Thank you.