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