splitview 的详细视图中的分组样式表视图
我尝试在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,我刚刚解决了。在 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.