我知道我们可以返回部分和行的数量.
- (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 –所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)