category原理探究-1

category探究准备

先来创建我们测试需要的类:

1
2
3
4
5
6
7
8
9
10
11
12
13
<!-- 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文件。

阅读全文

KVO-KVC的原理探究 - KVC篇

关于KVC的探究

基本介绍和使用

阅读全文

KVO-KVC的原理探究 - KVO篇

关于KVO的探究

KVO的基本使用

阅读全文

学习链接

学习博客、源码 等连接

阅读全文

hexo搭建

开始搭建

1. 创建Git仓库

在git上创建存放blog的仓库,名称为 username.github.io

2. 安装homebrew

执行以下命令安装homebrew:

1
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

还可以查看homebrew 官方文档

阅读全文