I have a problem with protocols. I have a class like this :
@class SideToolBarDelegate;
@interface AuthentificationViewController : UIViewController <ASIHTTPRequestDelegate, UITextFieldDelegate,SideToolBarDelegate> {
}
...
I would like that my class "AuthentificationViewController
" conforms to the protocol "SideToolBarDelegate
" just i am in the iPhone version and not to conform it i am in the iPad version. How i can declare this ? thanks.