iphone – 部分内的部分 – UITableView –

iphone – 部分内的部分 – UITableView –,第1张

概述我对tableView有一个问题. 我知道我们可以返回部分和行的数量. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 你能告诉我怎么能 我对tableVIEw有一个问题.

我知道我们可以返回部分和行的数量.

- (NSInteger)numberOfSectionsIntableVIEw:(UItableVIEw *)tableVIEw- (NSInteger)tableVIEw:(UItableVIEw *)tableVIEw numberOfRowsInSection:(NSInteger)section

你能告诉我怎么能有这样的东西:

A section within a section (and another section,if possible) – – And
then configure the rows there ?

我会回报什么

- (NSInteger)numberOfSectionsIntableVIEw:(UItableVIEw *)tableVIEw- (NSInteger)tableVIEw:(UItableVIEw *)tableVIEw numberOfRowsInSection:(NSInteger)section
解决方法 您必须在cellForRowAtIndexPath中创建自己的实现,其中返回的行实际上由多行和标题标签组成.或者更好的是将每隔一行设为“标题行”并检查cellForRowAtIndexPath,无论您是在“标题行”还是正常行;这样的事情:

if (indexPath.row == 0) {     // return header row} else {     // return normal row}

当然,在numberOfRowsInSection中,你必须为带有标题的部分返回正常的行数1.

总结

以上是内存溢出为你收集整理的iphone – 部分内的部分 – UITableView –全部内容,希望文章能够帮你解决iphone – 部分内的部分 – UITableView –所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1057028.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存