在 Three20 中,我不能在 searchViewController 中使用自定义表格单元吗?

发布于 2024-11-08 12:24:25 字数 1207 浏览 0 评论 0原文

我正在使用 searchViewController 部分实现 TTTableViewController,并且在搜索的 TableView 中显示搜索结果时遇到问题。

如果我将 TTTableTextItems 添加到数据源 items 属性,它工作正常,但如果我尝试添加 TTTableCaptionItem 或 TTTableImageItem 或我创建的任何自定义单元格,渲染就会混乱。

谁能确认可以在 searchViewController 中使用自定义表格单元格,并可能为我指明如何使其工作的正确方向?

我附上了 3 个屏幕截图来显示哪些内容有效,哪些内容无效。

不。 1:使用此代码:

[self.items addObject:[TTTableTextItem itemWithText:[item objectForKey:@"title"]]];

TTTableTextItem

否 2. 使用此代码破坏布局:< /strong>

[self.items addObject:[TTTableCaptionItem itemWithText:[item objectForKey:@"title"]
                                               caption:[item objectForKey:@"excerpt"]]];

TTTableCaptionItem

否。 3 还使用以下代码破坏布局:

[self.items addObject:[TTTableImageItem itemWithText:[item objectForKey:@"title"]
                                            imageURL:[item objectForKey:@"thumbnail"]]];

TTTableImageItem

I'm implementing a TTTableViewController with a searchViewController part, and I'm running into issues when displaying the results of the search in the search's TableView.

If I add TTTableTextItems to the datasource items property, it works fine, but if I try to add a TTTableCaptionItem or a TTTableImageItem or any custom cell I've created, the rendering is messed up.

Can anyone confirm that it's possible to use custom table cells in a searchViewController and perhaps point me in the right direction for how to make it work?

I've attached 3 screen shot to show what's working and what's not working.

No. 1: Works with this code:

[self.items addObject:[TTTableTextItem itemWithText:[item objectForKey:@"title"]]];

TTTableTextItem

No 2. Breaks the layout with this code:

[self.items addObject:[TTTableCaptionItem itemWithText:[item objectForKey:@"title"]
                                               caption:[item objectForKey:@"excerpt"]]];

TTTableCaptionItem

No. 3 Also breaks the layout with this code:

[self.items addObject:[TTTableImageItem itemWithText:[item objectForKey:@"title"]
                                            imageURL:[item objectForKey:@"thumbnail"]]];

TTTableImageItem

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

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

发布评论

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

评论(1

天冷不及心凉 2024-11-15 12:24:25

好吧,我明白了。关键是在用作搜索控制器的 TTTableViewController 中将 variableHeightRows 属性设置为 YES。下面是我使用过的代码。

TTTableViewController* searchController = [[[TTTableViewController alloc] init] autorelease];
searchController.dataSource = [[[MagazineSearchDataSource alloc] init] autorelease];   
searchController.variableHeightRows = YES;

self.searchViewController = searchController;
self.tableView.tableHeaderView = _searchController.searchBar;

OK, I figured it out. The key is setting the the variableHeightRows property to YES in the TTTableViewController that you're using as the search controller. Below is the code I've used.

TTTableViewController* searchController = [[[TTTableViewController alloc] init] autorelease];
searchController.dataSource = [[[MagazineSearchDataSource alloc] init] autorelease];   
searchController.variableHeightRows = YES;

self.searchViewController = searchController;
self.tableView.tableHeaderView = _searchController.searchBar;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文