应用程序首页上的仪表板式本地天气面板
基本上,我只是在这里寻找指针。理想情况下,我只需提供 GPS 坐标并返回某种 UIView,并像 Mac 上的仪表板一样很好地显示当前天气状况。
我唯一的另一个想法是制作一个简单的小网页,其中包含 yr.no 或其他服务的插件脚本,并在应用程序的开始屏幕的一部分上有一个 UIWebView(如果这样的话,我可以编写此代码)是最好的选择。)
对于最佳方法有什么建议吗?
Basically, I'm just looking for pointers here. Ideally, I'd just supply a GPS coordinate and get a UIView of some sort back, with a nice display of current weather conditions a la Dashboard on Mac.
The only other idea I have would be to make a simple, small webpage with a plug-in script for yr.no or some other service, and have a UIWebView on part of the start screen of the app (I can code this if this is the best option.)
Any suggestions for the best approach?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用了免费的互联网天气服务来了解当地天气(vackertvader.se,可能基于 yr.no?),它提供了一堆小部件尺寸。然后我用几行 HTML 制作了一个超级简单的网页,并添加了 CSS 来删除背景颜色。最后,我创建了一个不透明=NO的UIWebView,并在UIWebView和视图控制器的背景照片之间放置了一个半透明的小圆形框。看起来真的很不错:)
I used a free internet weather service for local weather (vackertvader.se, likely based on yr.no?) which offered a bunch of widget sizes. I then made a super simple web page with a few lines of HTML and added CSS to remove the background-color. Finally I created a UIWebView with opaque=NO and put a semi-transparent little rounded box between the UIWebView and the background photo of the viewcontroller. Looks really nice :)