利用CocoaPods集成ReactiveCocoa

前端之家收集整理的这篇文章主要介绍了利用CocoaPods集成ReactiveCocoa前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在闲暇时学习ReactiveCocoa遇到安装问题,特此记。
安装CocoaPods(略)
1.打开xcode 创建一个工程,名为ReactiveCocoaDemo

2.终端到工程路径下
cd ReactiveCocoaDemo/

3.配置依赖
vim Podfile
platform :ios,’5.0’
pod ‘ReactiveCocoa’

4.下载文件
pod install –verbose –no-repo-update

5.Xcode ->“Build Phases”–> target,添加 RAC 到 “Link Binary With Libraries”添加libReactiveCocoa.a

6.在Header Search Paths 中添加”$(BUILD_ROOT)/../IntermediateBuildFilesPath/UninstalledProducts/include”

7.在 “Other Linker Flags” 添加 -ObjC

8.在ReactiveCocoaDemo-Prefix.pch 将RAC的头文件加进去

#import <ReactiveCocoa/ReactiveCocoa.h>

原文链接:https://www.f2er.com/react/307392.html

猜你在找的React相关文章