在導入一些支付SDK時可能出現(xiàn) 'openssl/asn1.h'file not found 的錯誤
這是因為#include <xx.h> 是查找系統(tǒng)提供的頭文件,但系統(tǒng)庫并沒有<openssl/asn1.h>
</br>
解決方法:
點擊項目-> Build Settings -> 搜索Search Paths -> 找到Header Search Paths
</br>
雙擊添加兩行內容:
$(inherited)
$(PROJECT_DIR)/項目文件夾名/SDK文件夾名/openssl/include
然后Command+N就能發(fā)現(xiàn)能編譯過了
</br>
$(PROJECT_DIR) :項目的根目錄