hank
2017-03-03 71172661cf242ba67cf68c387ce24079ead55930
commit | author | age
6e1425 1 // Many protocols will work from wax out of the box. But some need to be preloaded.
H 2 // If the protocol you are using isn't found, just add the protocol to this object
3 //
4 // This seems to be a bug, or there is a runtime method I'm unaware of
5
6 #import <UIKit/UIKit.h>
7
8 @interface ProtocolLoader : NSObject <UIApplicationDelegate, UIWebViewDelegate, UIActionSheetDelegate, UIAlertViewDelegate, UISearchBarDelegate, UITextViewDelegate, UITabBarControllerDelegate> {}
9 @end
10
11 @implementation ProtocolLoader
12 @end