iPhone、tableView 和 appStore 应用程序
我想创建一个像 appStore 一样的应用程序。
一个漂亮的表格(我有来自苹果的源代码,使用自定义表格单元格)
但我的主要问题是我找不到关于如何制作产品详细信息页面的好教程或指南。
我想在顶部有一个标签,然后是文本,然后我想有图像。 我注意到,在 appStore 中,当您到达图像时,它会在那里锁定一段时间!
我该怎么办? 我尝试使用 UIScrollView 但我相信情况并非如此。 我正在考虑再次将 tableView 与自定义单元格一起使用,但我再次不确定。
有什么想法吗?或者有什么好的工作例子吗?或者教程?
感谢您的宝贵时间:)
I want to create an application excacly like appStore.
A nice table (I have the source code from apple using custom table cell)
But my main problem is that I cannot find a nice tutorial or a guide on how to make the product detail page.
I want to have a label at the top then a text and after that I want to have the images.
I notice that in appStore when you reach the images it locks there for a while!
How can I do that???
I tried using a UIScrollView but I believe this is not the case.
I am thinking using tableView again with custom cells but again I am not sure.
Any ideas? or any good working example? or tutorial?
thanks for your time :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从这里开始:
http://blog.webscale.co.in/?p=284
这将教您基本的表格设计技能以及如何创建左侧带有图像的自定义单元格。
然后,如果您想学习如何创建选项卡栏应用程序并能够在顶部有一个导航控制器,那么您可以按照此描述性教程逐步完成此任务。
http://www.devx.com/wireless/Article/44897
你会得到什么遵循这两个教程后?
appStore 应用程序,不完全是,但您将获得自己的版本。
编辑:添加了如何实现类似 UIScrollView 效果的 appStore 的详细信息页面。
按照这个精彩的视频教程进行操作。
http://blog.sallarp.com/ iphone-ipad-appstore-like-uiscrollview-with-paging-and-preview/
玩得开心
PK
然后
start from here:
http://blog.webscale.co.in/?p=284
Which will teach you basic table design skills and how to create custom cells with images on the left.
Then if you would like to learn how to create a tab bar application an be able to have a navigation controller at the top then you can follow this descriptive tutorial step by step to achieve this.
http://www.devx.com/wireless/Article/44897
What do you get after following these two tutorials?
the appStore application, well not exactly but you will get your own version.
EDIT: Added Details page how to achieve appStore like UIScrollView effect.
follow this brilliant video tutorial.
http://blog.sallarp.com/iphone-ipad-appstore-like-uiscrollview-with-paging-and-preview/
Have fun
PK
Then