gpt4 book ai didi

ios - 带有静态单元格的 UITableViewController 显示为空白

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:44:33 26 4
gpt4 key购买 nike

我正在使用 JTRevealSidebar 并构建了一个带有静态单元格的 TableView Controller ,用作我的滑出导航。当我将导航 Controller 作为开始 View 时,我会看到我所有的表格单元格,因为它们应该是这样的。当我将该 View 用作导航的滑出 View 时,它是一个空 TableView 。这是我用来将其设置为侧边栏并显示它的代码。

//This is in the header file
@property (nonatomic, strong) ehrxSideBarController *leftSidebarViewController;

//Then in the implementation file
@synthesize leftSidebarViewController = _leftSidebarViewController;

- (UIView *)viewForLeftSidebar {

CGRect viewFrame = self.navigationController.applicationViewFrame;
UITableViewController *controller = self.leftSidebarViewController;
if ( ! controller) {
self.leftSidebarViewController = [[ehrxSideBarController alloc] init];
self.leftSidebarViewController.sidebarDelegate = self;
controller = self.leftSidebarViewController;
controller.title = @"LeftSidebarViewController";
}
controller.view.frame = CGRectMake(0, viewFrame.origin.y, 270, viewFrame.size.height);
controller.view.autoresizingMask = UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleHeight;
return controller.view;
}

我确保在我的 Storyboard中, View 具有与之关联的正确 Controller 类。

最佳答案

好吧,从即使有赏金也没有任何回应来看,我猜这是为了掩盖或没有人尝试过。我最终在代码中动态创建了部分和单元格,而不是使用静态单元格。

关于ios - 带有静态单元格的 UITableViewController 显示为空白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12434200/

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