我有一条航道。 有一种观点认为,这是可调用的电文的子类,在可调用的电文中添加一条UIToolbar线,其代码如下:
UIToolbar *toolbar = [[UIToolbar alloc] init];
[toolbar sizeToFit]; // Set the toolbar to fit the width of the app
CGFloat toolbarHeight = [toolbar frame].size.height; // Calculate the height of the toolbar
CGRect rootViewBounds = self.parentViewController.view.bounds;
CGFloat rootViewHeight = CGRectGetHeight(rootViewBounds);
CGFloat rootViewWidth = CGRectGetWidth(rootViewBounds);
CGRect rectArea = CGRectMake(0, toolbarHeight, rootViewWidth, toolbarHeight);
[toolbar setFrame:rectArea];
[self.navigationController.view addSubview:toolbar];
问题是,该工具棒是“顶”可转让意见的“顶点”,掩盖了《可转让意见》第一行的内容。 我真正想要的是,本表认为,在UIToolbar下,“开始”。
我如何使这项工作适当进行?
Gracias, Jose