自定义 UITableViewCell 多个部分
由于我是这个开发的新手,我请求您对我的以下要求给出快速答复。
我的 iPhone 应用程序是:从网页请求数据(使用 php)并将其显示在我的表格中。该表包含多行信息:imageView,一列 3 行(用户名,类别,视图数),下一列用户电子邮件 ID。
为了获取这种类型的 tableView,我使用了自定义 UITableViewCell 引用, NSURLConnection 方法,一次加载表中的内容(多条记录),一切正常。
但是,我想改变这个设计:
(i)我想显示我的 tableView 与多个部分..基于类别(这是动态的,而不是固定的值)。
(ii) 我想将类别名称作为部分标题。
我正在绞尽脑汁地想从一周开始在我的应用程序中获得这种类型的功能。我参考了苹果文档和谷歌搜索网络。但是,我无法找到任何资源来满足我的要求..
这可能吗?.如果你们中的任何人尝试过这一点,请建议我如何进一步进行..
等待您宝贵的回复..Ramya
。
As i am newbie to this development, i am requesting you to give a fast reply for my below requirement.
My iPhone application is: Requesting data from web page(with php) and showing it in my table. This table contains multiple lines of information: imageView, 3 rows(user name, category, no.of views) in one column, and user email id in next column..
To get this type of tableView, i used custom UITableViewCell reference,NSURLConnection methods, loaded content(multiple records) in the table at-a-time and everything works fine.
But, i would like to change in this design as:
(i) I want to show my tableView with multiple sections..based on category-wise(which is dynamic-not fixed no.of values).
(ii) I want to make category name as section title..
I am hitting my head to get this type of functionality in my app from one week. I referred apple documentation & googled web.but, i was unable to find any resource to match my requirement..
Is this possible?.If you any one of you tried this, kindly suggest me how to proceed further..
Waiting for your valuable response..
Ramya.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(i)
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
(ii)
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
(i)
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
(ii)
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section