我们能否以编程方式从天气应用中获取温度和其他信息。我们是否在IOS
中有任何框架,或者我们应该使用Google
或Yahoo
中的apis。
答案 0 :(得分:1)
直接在iOS SDK中内置了任何内容,如果这就是您要求的内容。
您需要使用来自Google或Yahoo或Weather Underground(wunderground.com)的API,或者您可能能够使用人们公开或商业化提供的第三方框架。
如果它对您有帮助,here is a sample GitHub project that uses Wunderground API's。
答案 1 :(得分:0)
我也有类似的查询。我发现OpenWeatherMap API非常有用。我为它编写了一个简单的包装器,以便您可以使用点符号直接操作天气数据。 http://jonathanfield.me/objective-c-openweathermap-api-wrapper/
答案 2 :(得分:0)
我使用-Swift,面向Protocaol的编程(POP),Codable,OpenWeatherMap Api和带有单元测试的MVVM设计模式创建了示例 iOS Weather应用。
https://github.com/deepakiosdev/WeatherApp/tree/master
也许会有所帮助。