You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 2, 2018. It is now read-only.
// When implementing these signatures within the class that conforms to this delegate protocol, you can easily realize that these methods belong to here.
/* The Bad */
@protocol SomeClassDelegate <SomeProtocol>
- (void)refreshedSomeClassInstance;
- (void)updatedSomething;
- (void)showSomething:(BOOL)showSomething;
@end
// When implementing these signatures within the class that conforms to this delegate protocol, these methods can easily be confused with private methods of that class, or with other methods that are also included in that class but have nothing to do with this delegate.