[Pod] Xcode 오픈 소스 사용시 Pod
안녕하세요? Pod 을 이용하여 오픈소스를 설치 한 후 프로젝트를 실행하려는데 에러 문구가 나왔기에 경험을 끄적여 봅니다. 저의 첫 Podfile 은 아래와 같습니다. source 'https://github.com/CocoaPods/Specs.git' platform :ios, '8.0' use_frameworks! pod 'Alamofire', '~> 3.0’ 아래와 같은 에러를 보게 됩니다. [!] The dependency `Alamofire (~> 3.0)` is not used in any concrete target. 그래서 아래와 같이 수정하였습니다. source 'https://github.com/CocoaPods/Specs.git' platform :ios, '8.0' use_frame..
2016.05.12