If you want the class to conform to several protocols, you simply separate the protocol names in <> commas:
@interface MyClass : TheSuperclass <Protocol1, Protocol2, Protocol3> ... @end
etc.
In your case:
@interface MainViewController : UIViewController <FlipsideViewControllerDelegate, CLLocationManagerDelegate> ... @end
source share