我正在开发一个iOS框架,我需要Alamofire,但是当我编译框架时,我收到了以下错误:
Module Alamofire has no member named request
我的框架中也需要Dollar,所以这是我的Podfile:
source 'https://github.com/CocoaPods/Specs.git'
link_with ['VTStarterFramework', 'VTStarterFrameworkTests']
platform :ios, '8.0'
use_frameworks!
pod 'Alamofire', '~> 3.0'
pod 'Dollar'
我还在构建设置中将Build Active Architecture设置为
Debug = YES
Release = NO
我将不胜感激。
提前致谢。