- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在用户滚动到 View 末端后添加新闻行。
前 10 行来自第一页获取,然后我重新加载我的表。
这是首页代码:
SubViewController *svc =[self.storyboard instantiateViewControllerWithIdentifier:@"Subview"];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0),
^{
ParseOperation *p = [[ParseOperation alloc]init];
p.code = selection_code.text;
[p main];
dispatch_async(dispatch_get_main_queue(), ^(void)
{
svc.entries = p.appRecordList;
[svc.tableView reloadData];
});
});
[svc setModalTransitionStyle:UIModalTransitionStyleCoverVertical];
[self.navigationController pushViewController:svc animated:YES];
对于第二页,我找到了卷轴项目的结尾:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
......
if ((unsigned long)indexPath.row == [self.entries count] - 1){
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0),
^{
ParseOperation *p = [[ParseOperation alloc]init];
AppRecord *appRecord = [self.entries objectAtIndex:indexPath.row];
p.lastid = appRecord.ids;
[p main];
dispatch_async(dispatch_get_main_queue(), ^(void)
{
SubCategoryViewController *svc =[self.storyboard instantiateViewControllerWithIdentifier:@"SubView"];
svc.entries = p.appRecordList;
[svc.tableView reloadData];
});
});
}
return cell;
解析操作很好,新的 rss 项目被抓取。但表格没有刷新。
编辑(添加 numberOfRowInSection 代码)
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
NSUInteger count = [self.entries count];
// if there's no data yet, return enough rows to fill the screen
if (count == 0)
{
return kCustomRowCount;
}
return count;
}
最佳答案
代码对我来说没有完全意义,看起来你有两个不同的类,SubViewController
和 SubCategoryViewController
,哪个包含 tableView?您正在使用标识符“SubView”实例化两者。在我看来,您可以删除整个 SubCategoryViewController 类,并且只使用 SubViewController。不过,我可能会误解他们的目的。
无论哪种方式,在您的 cellForRowAtIndexPath
方法中,您都在实例化一个新的空 View Controller 。从 cellForRow..
内部查看您自己的代码:
SubCategoryViewController *svc =[self.storyboard
instantiateViewControllerWithIdentifier:@"SubView"];
svc.entries = p.appRecordList;
[svc.tableView reloadData];
此代码的作用是实例化一个新的 SubCategoryViewController
,也称为“svc”。它与您当前的 View Controller 无关。它是另一个,有自己的 TableView 。您正在将新数据推送到一个新的、不可见的 View Controller ,而您从未使用过它。在 [.. reloadData]
之后,您的新 View Controller 被删除。
在我看来,您应该使用 [self ..]
而不是新的无用的 svc
。
代替上面的代码,试试这个(并删除 subCategory-instantiation):
self.entries = p.appRecordList;
[self.tableView reloadData];
请记住,此代码会将当前在 self.entries
中的数据替换为新数据。如果你的新数据是另一页,那么你应该先追加数据,否则它在你的表中总是 10 行。我不知道 entries
(您的数据源)是什么类型的对象,所以我无法告诉您如何追加数据。如果它是一个 NSArray
,您可以这样做:
NSArray *temp = [self.entries arrayByAddingObjectsFromArray:p.appRecordList];
self.entries = temp;
如果它是一个 NSMutableArray
,您可以简单地转到 [self.entries addObjectsFromArray:p.appRecordList];
。如果您使用的是其他东西,我相信也有适用于它们的附加方法。
注意:如果我对 SubView..
和 SubCategoryView..
的理解有误,请评论两者之间的区别,我会尽力弄清楚.
关于ios - 将新行添加到 uitableview 的末尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22173189/
我正在更改链接网址以添加 www.site.com/index.html?s=234&dc=65828 我通过此代码得到的是:site.com/&dc=65828 var target="&dc=65
我在编译过程中收到错误: src/smtp.c:208:1: warning: control reaches end of non-void function [-Wreturn-type] 这是相
这是我的 bootstrap/html 代码: Put email 位置正确,但我希望输入字段的大小延伸到 div 末尾。谁能帮帮我? 最佳答案 只需按百分比指定宽度,如下所示
我正在尝试获取一个像这样的 json 对象: filters = {"filters": myArray}; 并将其附加到 URL 的末尾,使用: this.router.navigate([`/de
这个问题已经有答案了: Remove hash from url (5 个回答) 已关闭 10 年前。 我有一个网站,stepaheadresidents.com ,并且井号 (#) 会自动添加到 u
我有这个代码 $('container a').appendTo('.container'); dzedzdqdqdqzdqdzqdzqdqzdqd Forgot password
为了练习更多 Python 知识,我尝试了 pythonchallenge.com 上的挑战 简而言之,作为第一步,此挑战要求从末尾带有数字的 url 加载 html 页面。该页面包含一行文本,其中有
我对 FS2 很陌生,需要一些有关设计的帮助。我正在尝试设计一个流,它将从底层的 InputStream 中提取 block ,直到结束。这是我尝试过的: import java.io.{File,
我对 FS2 很陌生,需要一些有关设计的帮助。我正在尝试设计一个流,它将从底层的 InputStream 中提取 block ,直到结束。这是我尝试过的: import java.io.{File,
我正在编写一个 ajax 应用程序,并且在 php 脚本中有一个函数: public function expire_user() { $r=array("return"=>'OK');
我正在使用一个QListView,它包装了一个非常简单的列表模型。我想尝试实现类似于某些网页中看到的“无限滚动”的东西。 目前,模型通过最多添加 100 个项目的方法更新(它们取自外部 Web API
运行 cucumber 测试给我以下错误 end of file reached (EOFError) /usr/lib64/ruby/2.0.0/net/protocol.rb:153:in
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我想知道版本命名的具体作用是什么? 喜欢 jquery.js?ver=1.4.4 我的意思是如果我使用像这样的 cdn jquery/1.4.4/jquery.min.js?ver=1.4.4但是另一
" data-fancybox-group="gallery" title="">" alt="" /> 在此代码中 echo $prod['item_image_url'];打印存储在我的表中的图像
我目前使用 Wordpress 作为博客平台,但我想更改为使用 Jekyll 来生成静态页面。在 WordPress 上,我的 URL 使用以下格式: /年/月/日/标题 但我想将其重定向到 /年/月
根据docs这应该是不可能的 Regular expressions cannot be anchored to the beginning or end of a token 尽管如此,它似乎对我有
有没有办法创建 dijit 并将其附加到 div 的末尾?假设我有以下代码: Add Person 我在网上找到了以下代码,但这替换了我的“attendants”div: var personCo
我有这段代码: //execute post (the result will be something like {"result":1,"error":"","id":"4da775
我需要一些函数方面的帮助。 我想编写一个插入链表的函数。但不仅仅是中间,如果必须插入前端或末尾,它也必须起作用。 结构: typedef struct ranklist { i
我是一名优秀的程序员,十分优秀!