如何为我的表格视图实现图像详细视图?

发布于 2024-11-03 07:17:30 字数 149 浏览 5 评论 0原文

我有一个表视图,对于每个条目,我想在详细视图中显示单独的图像。我将表视图数据存储在 NSArray 中,然后将其复制到 NSDictionary 以使我的条目可搜索。我找到了有关如何制作图像详细视图的教程,但我不知道如何仍然保持我的表格可搜索。我对iOS开发还很陌生,所以请详细说明。

I have a table view that for each entry I want to display a separate image in a detail view. I have my table view data stored in an NSArray, which I then copy over to an NSDictionary to make my entries searchable. I have found tutorials for how to make an image detail view, but I do not know how to still keep my table searchable. I am still very new to iOS development, so please be detailed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦初启 2024-11-10 07:17:30

只是不要发布 NSDictionary 或任何数据源。

在 didSelectRowAtIndexPath: 方法中,您延迟实例化包含 UIImageView(或您想要显示的任何其他内容)的 UIViewController,并使用所需的图像设置子视图的图像属性。
通过这样做,您只需保留一个子视图并更改该子视图中的图像即可。

我希望我回答了你的问题:)(虽然我不是100%确定)

编辑:添加了一些代码用于说明目的

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{if(!subview){UIViewController *subview=[[UIViewController alloc]init];
subview.delegate=self;}
subview.image=[UIImage ...];
...
}

Just don't release NSDictionary or any of your data sources.

In the didSelectRowAtIndexPath: method you lazily instantiate your UIViewController containing your UIImageView (or whatever else it is you want to display) and set your subview's image property with the desired image.
By doing this you're just keeping one subview around and just change the image in this subview.

I hope I answered your question :) (I'm not 100% sure though)

EDIT: Added some code for illustration purposes

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{if(!subview){UIViewController *subview=[[UIViewController alloc]init];
subview.delegate=self;}
subview.image=[UIImage ...];
...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文