10

我正在尝试通过 CocoaPods 网站访问我图书馆的信息,但我无法访问。所有其他库似乎都可以扩展(我的是 MKWeatherUndergroundKit)

在此处输入图像描述

这是我的 podspec

Pod::Spec.new do |s|

s.name         = "MKWeatherUndergroundKit"
s.version      = "0.6"
s.summary      = "A simple iOS and OS X library for retrieving weather information using the Weather Underground API"
s.homepage     = "https://github.com/MendyK/MKWeatherUndergroundKit"
s.license      = { :type => "MIT", :file => "LICENSE" }
s.author             = { "MendyK" => "myEmail@gmail.com" }
s.social_media_url   = "https://twitter.com/MenndK"
s.platform     = :ios, '8.0'
s.source       = { :git => "https://github.com/MendyK/MKWeatherUndergroundKit.git", :tag => "0.6"}

s.source_files  = "MKWeatherUndergroundKit/*.{h,m}"
s.resources = "MKWeatherUndergroundKit/Climacons.ttf"
s.requires_arc = true
s.frameworks = 'CoreGraphics', 'CoreLocation'
end
4

1 回答 1

13

你现在应该好了,http://cocoapods.org/pods/MKWeatherUndergroundKit

问题是我们的 CocoaDocs 服务器已关闭,我已经手动重新部署了您的版本并正在查看。

我还在我的博客文章中写了一篇文章,其中包含许多有用的提示: http: //orta.io/rebase/why-cant-i-expand/

于 2015-03-24T19:43:03.477 回答