Kiwi e CocoaPods com uma biblioteca compartilhada estática

Eu tenho um espaço de trabalho com 3 projetos:

MyAppComumPods

Comum é uma biblioteca comum da qual o MyApp depende. Eu gostaria de configurar o CocoaPods e o Kiwi para funcionarem corretamente neste projeto. Como faço para fazer isso?

eu encontreihttps://stackoverflow.com/a/16472563/62, mas quando tento seguir essa abordagem, recebo um erro ao criar o MyApp antes de tentar adicionar o Kiwi:

ld: library not found for -lPods

Aqui está o repo no GitHub:https://github.com/lyahdav/cocoapods_kiwi_shared_library

Meu Podfile é:

workspace 'MyApp.xcworkspace'
platform :ios, '7.0'

target 'Common' do
  xcodeproj 'Common/Common.xcodeproj'

  pod 'AFNetworking'
  pod 'Reachability'

  target 'MyApp', :exclusive => true do
    xcodeproj 'MyApp.xcodeproj'
  end
end

questionAnswers(4)

yourAnswerToTheQuestion