I\'m trying to build a photo App Extension in Xcode 6 Beta-6 that uses cocoapods libraries. The bridging header that Xcode creates for the photo extension can\'t see anythin
link_with, you will not use it anymore.
Invalid
Podfilefile: [!] The specification oflink_within the Podfile is now unsupported, please use target blocks instead..
Below is the perfect answe, tested also.
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, ‘9.0’
use_frameworks!
inhibit_all_warnings!
target 'DemoTodayWidget' do
pod 'Reachability', '~> 3.2'
end
target 'My Widget' do
pod 'Reachability', '~> 3.2'
end