Skip to content

Instantly share code, notes, and snippets.

@bouchtaoui-dev
Created December 2, 2017 19:36
Show Gist options
  • Select an option

  • Save bouchtaoui-dev/2f205b0edbda5f412d309149fa90a681 to your computer and use it in GitHub Desktop.

Select an option

Save bouchtaoui-dev/2f205b0edbda5f412d309149fa90a681 to your computer and use it in GitHub Desktop.
// in some class.h
@protocol ProtocolName
@required
// list of required methods
@optional
// list of optional methods
@end
// interface...
id delegate
// @end
// implementation.m
[delegate protocolMethod];
// @end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment