Skip to content

Instantly share code, notes, and snippets.

@shawjia
Last active December 11, 2015 03:38
Show Gist options
  • Save shawjia/4539311 to your computer and use it in GitHub Desktop.
Save shawjia/4539311 to your computer and use it in GitHub Desktop.
Notes on Learning Objective-C

参考文档

Category (类别)

Category extends class functionality without subclassing.

#import "ClassName.h"
@interface ClassName ( CategoryName )
// method declarations
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment