pod支持问题

xcode-playground-with-cocoapods You could use ThisCouldBeUsButYouPlaying or add this to your Podfile xcode7.3.1和cocoapods1.0版本导致playground无法import相关动态库

RxSwift资源案例

在项目中使用RxSwift.Resources.total,提供所有Rx资源分配的计数,这对于在开发期间检测泄漏非常有用。 在写入磁盘之前,修改一些工程的配置post_install hook:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
target 'AppTarget' do
    pod 'RxSwift'
end

post_install do |installer|
    installer.pods_project.targets.each do |target|
        if target.name == 'RxSwift'
                target.build_configurations.each do |config|
                    if config.name == 'Debug'
                    config.build_settings['OTHER_SWIFT_FLAGS'] ||= ['-D', 'TRACE_RESOURCES']
                end
            end
        end
    end
end

Run pod update. Build project (Product → Build).

post_install 用法

podfile hook语法 post_install语法 把玩CocoaPods post_install 和 pre_install