Demo地址:https://github.com/ma762614600/iOS_Framework
javascript
第一步:製做frameworkjava
原文連接:打包本身的framework(Xcode7&OSX10.11)兼容各類cpu類型git
第一步:新建Framework項目github
第二步:編寫代碼,構建完成項目xcode
第三步:新建一個咱們用來運行編譯腳本的Targetbash
第四步:在新建的Target裏邊添加一個腳本app
第五步:填入腳本iphone
第六步:運行並根據須要編譯ui
# 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 -arch armv7 -arch armv7s -arch arm64 clean build xcodebuild -configuration "Release" -target "${FMK_NAME}" -sdk iphonesimulator -arch x86_64 clean build# Cleaning the oldest.if [ -d "${INSTALL_DIR}" ]thenrm -rf "${INSTALL_DIR}"fimkdir -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 "${SRCROOT}/Products/"
lipo -info ~/Documents/SFMapKit/Products/SFMapKit.framework/SFMapKit
第二步:解決會遇到的問題:spa
原文連接:XCode6添加自定義framework運行真機出現dyld: Library not loaded的解決方法
一、直接添加上面製做好的framework,會發報以下錯誤:
dyld: Library not loaded: @rpath/RLLibrary.framework/RLLibrary
Referenced from: /var/mobile/Applications/AE92B234-A818-445E-9D69-96E232BD50EB/RLProjectDemo.app/RLProjectDemo
Reason: image not found
(lldb)
討論:看網上很多人說是將上圖Link Binary With Libraries中的Required改成Optional就沒事了,實際真機運行發現不是回事,即便不報錯了,可是也是沒法運行程序。
解決方法:仔細看錯誤緣由,應該是沒有找到framework文件包,So,怎麼編譯時打包進去呢?以下圖,點擊那個+號:
添加Copy Files節點,在Destination中選Frameworks,再點擊下面+號,選擇自定義的framework,ok,真機 Build,Run,這個世界美好了。
二、即便上面都已經配置好了,程序運行ok,可是當引用庫中.h文件時,會警告「missing submodule 'XXXframework'」
解決方法:建立庫文件時,只要在庫文件中與庫同名.h文件中添加要暴露的.h文件,有點繞,能夠看下圖:
注:稍後我會把我本身的demo傳到github,再把整個流程細細梳理一遍,分享給你們!
-------------------------------------------------2015年11月27日編輯以下:--------------------------------------------------