1.AsyncDisplayKit 使用經(jīng)驗(yàn)分享
AsyncDisplayKit近一年的使用體會(huì)及疑難點(diǎn)
2. Git常用命令
3. iOS接入 Lottie 動(dòng)畫過程詳解
Lottie 是一個(gè)可應(yīng)用于Andriod和iOS的動(dòng)畫庫(kù),它通過bodymovin插件來(lái)解析Adobe After Effects 動(dòng)畫并導(dǎo)出為json文件,通過手機(jī)端原生的方式或者通過React Native的方式渲染出矢量動(dòng)畫
iOS接入 Lottie 動(dòng)畫過程詳解
4. 設(shè)置git代理
/// 鍵入以下命令設(shè)置代理
git config --global https.proxy http://127.0.0.1:1086
git config --global https.proxy https://127.0.0.1:1086
git config --global http.proxy 'socks5://127.0.0.1:1086'
git config --global https.proxy 'socks5://127.0.0.1:1086'
/// 鍵入以下命令重置代理
git config --global --unset http.proxy
git config --global --unset https.proxy
5. 讓系統(tǒng)首先使用系統(tǒng)/usr/local/bin里面的包
在.bash_profile配置環(huán)境變量
# Config brew environment
export PATH=/usr/local/bin:$PATH