splitview 的详细视图中的分组样式表视图

发布于 2024-11-18 05:57:20 字数 350 浏览 4 评论 0原文

我尝试在我的 splitview (DetailViewController) 的右视图中有一个分组样式的表格视图。 DetailViewController 有一个没有 NIB 文件的 UITableViewController。我已经实施了,

 - (id)initWithStyle:(UITableViewStyle)style {
   if ((self = [super initWithStyle:UITableViewStyleGrouped])) {
   }
   return self;
  }

没有效果。也许我必须重写 -(id)init{}?

任何帮助都会很好。问候基督徒

I try to have a grouped styled tableview in the right view of my splitview (DetailViewController). The DetailViewController has a UITableViewController without NIB file. I already have implemented

 - (id)initWithStyle:(UITableViewStyle)style {
   if ((self = [super initWithStyle:UITableViewStyleGrouped])) {
   }
   return self;
  }

With no effect. Maybe I have to override -(id)init{}?

Any help would be nice. regards Christian

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

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

发布评论

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

评论(1

灰色世界里的红玫瑰 2024-11-25 05:57:20

是的,我刚刚解决了。在 MainWindow-iPad.xib 中,我将 UITableViewController 放在右侧面板的 UIViewController 的位置上。这个控制器附带了一个 Tableview。首先,我将类的名称切换为 DetailViewController。然后我将所有渠道和代表联系起来。最后我在IB中将这个tableview的样式设置为grouped。这奏效了。

Yeah, I just solved it. In MainWindow-iPad.xib I put an UITableViewController on the spot of the UIViewController of the right panel. With this controller comes a Tableview. First i switched the name of the class to DetailViewController. Then I linked all outlets and delegates. Finally I set the style to grouped of this tableview in IB. And that worked.

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