Talk is cheap. Show me the code.
先来创建我们测试需要的类:
12345678910111213
<!-- Animal类 -->@interface Animal : NSObject- (void)animal;@end<!-- Animal+Eat分类 -->@interface Animal (Eat) <NSCopying, NSCoding>@property (nonatomic, assign) int age;- (void)eat;@end<!-- Animal+Play分类 -->@interface Animal (Play)- (void)play;@end
以Eat分类为例,请出 clang 命令:clang -rewrite-objc Animal+Eat.m ,生成.cpp文件。
clang
clang -rewrite-objc Animal+Eat.m
阅读全文
在git上创建存放blog的仓库,名称为 username.github.io
执行以下命令安装homebrew:1$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
1
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
还可以查看homebrew 官方文档