//聯(lián)系人:石虎QQ:1224614774昵稱:嗡嘛呢叭咪哄
一锦秒、創(chuàng)建一個(gè)workspace項(xiàng)目
1.現(xiàn)在桌面創(chuàng)建文件夾 SHTestSDk
2.打開Xcode,創(chuàng)建一個(gè)workspace 流程: Xcode---File---New---Workspace ?快捷鍵 :command +N = 創(chuàng)建項(xiàng)目
3.把創(chuàng)建好的添加到 文件名為 SHTestSDK 里面
如圖1:
圖2:
圖3:創(chuàng)建成功效果
二茉兰、創(chuàng)建SDK
1步悠、打開SHTestSDK.xcworkspace文件脆淹,創(chuàng)建project
圖4:
圖5:
圖6:
圖7:
圖8:成功效果圖
三智润、創(chuàng)建Demo
圖9:
圖10:
圖11:成功效果圖
四、SHTestDemo的關(guān)聯(lián)以及SDK的開發(fā)調(diào)試
1.這里創(chuàng)建一個(gè)SHView類未辆,繼承于UIView窟绷,簡(jiǎn)單的重寫了初始化方法,設(shè)置了顏色
圖12:
2.設(shè)置Build Setting參數(shù)將Build Active ?Architecture only設(shè)置為NO,
圖13:
3.設(shè)置Build Setting參數(shù)在Architectures下增加armv7s
圖14:
4.設(shè)置Headers咐柜,將要公開的頭文件拖到Public下兼蜈,要隱藏的放到Private或Project下,隱藏的頭文件不能被引用,效果圖:
圖15:
5.在SHTestSDK.h(必須是公開的拙友,否則無(wú)法引用)中將所有要公開的.h引入
6.創(chuàng)建一個(gè)Aggregare
圖16:
圖17:
7.嵌入腳本为狸,選中剛剛創(chuàng)建的Aggregare,然后選中右側(cè)的Build Phases,點(diǎn)擊左邊的+號(hào),選擇New Run Script Phases
圖18:
圖19:
8.下面把這段腳本復(fù)制進(jìn)去(格式不要錯(cuò)遗契,格式錯(cuò)編譯不通過(guò))
# Sets the target folders and the final framework product.
#如果工程名稱和Framework的Target名稱不一樣的話辐棒,要自定義FMKNAME
#例如: FMK_NAME ="MyFramework"
FMK_NAME=${PROJECT_NAME}
# Install dir will be the final output to the framework.
# The following line create it in the root
folder of the current project.
INSTALL_DIR=${SRCROOT}/Products/${FMK_NAME}.framework
# Working dir will be deleted after the framework creation.
WRK_DIR=build
DEVICE_DIR=${WRK_DIR}/Release-iphoneos/${FMK_NAME}.framework
SIMULATOR_DIR=${WRK_DIR}/Release-iphonesimulator/${FMK_NAME}.framework
# -configuration ${CONFIGURATION}
# Clean and Building both architectures.
xcodebuild -configuration"Release"-target"${FMK_NAME}"-sdk iphoneos clean build
xcodebuild -configuration"Release"-target"${FMK_NAME}"-sdk iphonesimulator clean build
# Cleaning the oldest.
if[ -d"${INSTALL_DIR}"]
then
rm -rf"${INSTALL_DIR}"
fi
mkdir -p"${INSTALL_DIR}"
cp -R"${DEVICE_DIR}/""${INSTALL_DIR}/"
# Uses the Lipo Tool to merge both binary files (i386 + armv6/armv7) into one Universal final product.
lipo -create"${DEVICE_DIR}/${FMK_NAME}""${SIMULATOR_DIR}/${FMK_NAME}"-output"${INSTALL_DIR}/${FMK_NAME}"
rm -r"${WRK_DIR}"
open"${INSTALL_DIR}"
圖20:效果圖:
9.最后編譯,command + B牍蜂,編譯通過(guò)在finder中找到framework漾根,拷貝出來(lái)
圖21:
圖22:效果圖
五、SHTestDemo與SHTestSDK的關(guān)聯(lián)
1.把打包好的framework拖到demo里面
圖23:
2.使用SDK鲫竞,運(yùn)行demo
圖24:
圖25:效果圖:
注意:以上功能就是SDK 和 demo 相關(guān)聯(lián)好了.
六辐怕、SHTestSDK 調(diào)試
1.修改下面SDK中的代碼,運(yùn)行demo就是修改后的效果从绘,然后就可以愉快的在這個(gè)工程里面開發(fā)調(diào)試SDK了寄疏,如果我把SHView的顏色設(shè)置為yellow,再去運(yùn)行demo僵井,看一下效果
圖26: