-
-
Save Teino1978-Corp/c8aa2433c49ec0c9d947 to your computer and use it in GitHub Desktop.
Protocol
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface RootTableViewController : UITableViewController <delegation1, delegation2> | |
... | |
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@property (weak) id<protocolName> delegate; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@protocol myProtocol <NSObject> | |
@required | |
- (void)method1; | |
@optional | |
- (void)method2; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment