如何实现像哈佛和CNN这样的新闻推送应用程序?
我想构建一个 iPhone 应用程序通过使用 RSS feed 获取新闻,我知道如何获取 feed 和钱包...等等
我的问题是如何构建像 CNN 应用程序和哈佛应用程序一样的新闻界面(我的意思是设计界面)
http://imageshack.us/photo/my-images/207/photo1y.png/ http://imageshack.us/photo/my-images/94/photo2bn.png/
任何教程都会有帮助, 提前致谢
i want to build an iphone app gets the news by using RSS feed , i know how to get a feed and purse ... etc
my problem is how can i build the news interface like CNN app and harvard app (i meant the design of interface)
http://imageshack.us/photo/my-images/207/photo1y.png/
http://imageshack.us/photo/my-images/94/photo2bn.png/
any tutorial will be helpful,
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有任何特定组件可以显示这样的新闻。因此,您必须使用
UIScrollView
、UIImage
和UITableView
手动完成此操作。根据您发布的 CNN 屏幕截图,导航栏位于顶部,带有 CNN 徽标,之后有一个 UIScrollView 来显示新闻部分。之后,它放置了一个
UIImageView
,并在屏幕底部放置了一个UITableView
来显示新闻项。有很多教程可以在 Web 中说明这些组件的功能。希望这能帮助您构建自己的观点。There are no any specific components to display news like this. So you have to do it manually by using
UIScrollView
,UIImage
andUITableView
.According to the CNN screenshot you have posted, Navigation bar is on the top with CNN logo and after that there is an
UIScrollView
to show the news sections. After that it placed aUIImageView
and in the bottom of the screen it has aUITableView
to display news items. There are lot of tutorials available to illustrate functionality of these components in web. Hope this will help you to construct your own view.