git rebase
fork 同步
Configuring a remote for a fork
git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git
Syncing a fork
git fetch upstream
git checkout master
git merge upstream/master
处理 Chrome 浏览器打不开不安全的 https 链接
- 点击页面空白处
- 键盘输入
thisisunsafe
Cocoapods Private Pods
method_t
- method_t 是对方法 / 函数的封装
struct method_t {
SEL name; // 方法名
const char *types; // 编码(返回值类型,参数类型)
IMP imp; // 指向方法的指针(方法地址)
}