gpt4 book ai didi

objective-c - 如何不使用 dequeueReusableCellWithIdentifier?

转载 作者:太空狗 更新时间:2023-10-30 03:51:09 28 4
gpt4 key购买 nike

我有一个小 TableView ,最多可能有 10 个项目,我不想使用 dequeueReusableCellWithIdentifier 方法。原因是,每次我滚动表格 View 时,我都会用第一行代替最后一行,这需要几秒钟的时间才能更新回来,以获取最后一行的更新。

我正在使用原型(prototype)单元,我尝试删除:

JsonTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

但它在表格 View 中返回空白单元格。

这是我的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIdentifier = @"Cell";

JsonTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell=[[JsonTableViewCell alloc]initWithStyle:
UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}

我也尽量保持

JsonTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

并像这样配置单元格:

if (cell == nil) {
cell.title.text = titleStrip;
}

但在这种情况下,我得到了 Storyboard中的原型(prototype)单元。它不是空白,但没有填充数据。

谁能告诉我我做错了什么?

更新 **** 10.10.2014 *******

以下是所有代码可能会有所帮助:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return myObject.count;
}<p></p>

<ul>
<li><p>(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIdentifier = @"Cell";</p>

<p>JsonTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell=[[JsonTableViewCell alloc]initWithStyle:
UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}</p>

<p>dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0ul);
dispatch_async(queue, ^{</p>

<p>NSDictionary *tmpDict = [myObject objectAtIndex:indexPath.row];</p>

<p>NSMutableString *text;
text = [NSMutableString stringWithFormat:@"%@",
[tmpDict objectForKeyedSubscript:title]];</p>

<p>NSMutableString *detail;
detail = [NSMutableString stringWithFormat:@"%@ ",
[tmpDict objectForKey:content]];</p>

<p>NSURL *url = [NSURL URLWithString:[tmpDict objectForKey:thumbnail]];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *img = [[UIImage alloc]initWithData:data];</p>

<p>NSString *titleStrip = [[text description] stringByReplacingOccurrencesOfString:@""withString:@""];</p>

<p>NSString *detailStrip = [[detail description] stringByReplacingOccurrencesOfString:@""withString:@""];</p>

<p>dispatch_sync(dispatch_get_main_queue(), ^{</p>

<p>cell.titreNews.text = titleStrip;</p>

<p>cell.detailNews.textAlignment = NSTextAlignmentJustified;</p>

<p>cell.detailNews.text = detailStrip;</p>

<p>UIImage *image0 = [UIImage imageNamed:@"video.png"];</p>

<p>if (img != nil) {
cell.imageNews.image = img;
}
else {
cell.imageNews.image = image0;
}</p>

<p>});
});</p>

<p>[cell setAccessoryType:UITableViewCellAccessoryNone];</p>

<p>return cell;
}</p></li>
</ul>

<p></p>

最佳答案

此代码块永远不会被调用,因为您在它之前实例化了一个单元格(单元格永远不会为零)。

if (cell == nil) {
cell.title.text = titleStrip;
}

如果您不使用 dequeue 方法,请不要调用它们。将您的方法更改为:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{
//Don't even try to dequeue, just create new cell instance
JsonTableViewCell *cell = [[JsonTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
cell.title.text = titleStrip;
return cell;
}

关于objective-c - 如何不使用 dequeueReusableCellWithIdentifier?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26225882/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com