情况:我有一个UITableViewController从服务异步加载一些数据。在此期间,我想在显示我的自定义指标和文本的表格视图上放置一个全屏(导航栏除外)视图。
问题:我遇到的问题是当我的自定义视图(它有红色背景)放在UITableView上时,表格视图的行会显示在我的自定义视图中(请参阅图片如下)。
我尝试了什么: 我试过使用insertBelow及以上,没有用。我也尝试过:tableview.Hidden = true,但由于某些原因,这也隐藏了自定义视图,如图2所示。
Image1:出于某种原因,我可以看到这些线条引起了我的看法。
图2:当使用hidden = true时,Tableview +自定义视图消失。
我的代码:
public override void ViewDidLoad ()
{
base.ViewDidLoad ();
UIView view = new UIView (new RectangleF (0, 0, this.TableView.Frame.Width, this.TableView.Frame.Height));
view.BackgroundColor = UIColor.Red;
this.TableView.AddSubview (view);
TableView.Source = new SessionTableViewSource ();
}
答案 0 :(得分:42)
您可以使用self.navigationController.view
作为添加子视图的视图。
答案 1 :(得分:32)
问题是UITableViewController
的视图是UITableView
,因此您无法在表格顶部向控制器添加子视图。
我建议从UITableViewController
切换到包含UIViewController
的简单UITableView
。这样,控制器主视图是包含表格的普通UIView
,您可以将子视图添加到主UIView
,并将它们放在表视图的顶部。
答案 2 :(得分:3)
您可以尝试将视图添加到窗口,而不是将其嵌套在表格视图中,如下所示:
UIWindow* mainWindow = [[UIApplication sharedApplication] keyWindow];
[mainWindow addSubview: overlayview];
答案 3 :(得分:2)
UIWindow* window = [[UIApplication sharedApplication].delegate.window;
[window addSubview: your-overlayview];
答案 4 :(得分:2)
注意:下面的代码假设有一个自定义视图(在我的情况下为ratingView),它将通过UITableView呈现。
我已经阅读了很多答案和similar questions on SO。来自这些来源的其他答案对我有不同程度的影响(例如,视图已加载但未显示或无法访问,......)。我使用的是Swift 2.0+,我正在使用 UITableViewController 分享完整的解决方案。
创建导航栏和视图的出口,您希望将其带到tableview上。
//MARK:Outlets
@IBOutlet weak var navBar:UINavigationBar!
@IBOutlet var ratingView: MNGStarRating!
在我的情况下,我还想在tableview上设置动画的动画,所以我使用了一个类变量来保存对拐点的引用和场景上方的一个点(屏幕外)。
var centerYInflection:NSLayoutConstraint!
var aPointAboveScene = -(max(UIScreen.mainScreen().bounds.width,UIScreen.mainScreen().bounds.height) * 2.0)
然后在viewDidLoad
我调用了一个函数(configureRatingViewAutoLayout),它配置并添加新视图的约束,以便在tableview上进行动画处理。
func configureRatingViewAutoLayout() {
//REQUIRED
self.navBar.superview?.addSubview(self.ratingView)
var newConstraints:[NSLayoutConstraint] = []
newConstraints.append(self.ratingView.leadingAnchor.constraintEqualToAnchor(self.view.leadingAnchor,constant: 10))
newConstraints.append(self.ratingView.trailingAnchor.constraintEqualToAnchor(self.view.trailingAnchor,constant: 10))
newConstraints.append(self.ratingView.centerXAnchor.constraintEqualToAnchor(self.view.centerXAnchor))
//hides the rating view above the scene
self.centerYInflection = self.ratingView.centerYAnchor.constraintEqualToAnchor(self.view.centerYAnchor, constant: self.aPointAboveScene)
//the priority must be set below 1000 if you intend to change it after it has been added to a view
self.centerYInflection.priority = 750
newConstraints.append(self.centerYInflection)
//constraints must be added to the container view of the two items
self.ratingView.superview?.addConstraints(newConstraints)
}
Nota Bene - 在UITableViewController上;自我观点是 self.tableView。他们指向同一件事,所以我想也可以 使用上面的self.tableView参考。
稍后......为了响应UIControl事件,我调用了这个方法。
@IBAction func toggleRatingView (sender:AnyObject?){
//REQUIRED
self.ratingView.superview?.layoutIfNeeded()
UIView.animateWithDuration(1.0, delay: 0.0, usingSpringWithDamping: 0.37, initialSpringVelocity: 0.99, options: [.CurveEaseOut], animations: { () -> Void in
if CGRectContainsRect(self.view.frame, self.ratingView.frame) {
//in frame ~ animate away
//I play a sound to alert the user something is happening
self.centerYInflection.constant = self.aPointAboveScene
self.centerYInflection.priority = UILayoutPriority(950)
//I disable portions of the UI
self.disableUIElements(nil)
} else {
//out of frame ~ animate in
//I play a different sound here
self.centerYInflection.constant = 0
self.centerYInflection.priority = UILayoutPriority(950)
//I enable the UI fully
self.enableUIElements(nil)
}
//REQUIRED
self.ratingView.superview?.setNeedsLayout()
self.ratingView.superview?.layoutIfNeeded()
}) { (success) -> Void in
//do something else
}
}
可以将这些辅助方法配置为在视图呈现期间控制对场景中元素的访问。
func disableUIElements(sender:AnyObject?) {
//UI
}
func enableUIElements(sender:AnyObject?) {
//UI
}
我的观点是故事板中的自定义视图(位于 tableview但连接到TableView控制器)。该观点有一个 必需用户运行时属性定义为
layer.zPosition
,其数字值设置为2(这可确保它出现在 UITableView的)。还可以尝试使用bringSubviewToFront: 和sendSubviewToBack:方法,如果您不想设置zPosition (我认为zPosition更易于使用)
答案 5 :(得分:1)
尝试此操作以挂钩UITableViewController
将按钮声明为变量:
var submitButton: UIButton!
和viewDidLoad
:
submitButton = UIButton(frame: CGRect(x: 5, y: UIScreen.main.bounds.size.height - 50, width: UIScreen.main.bounds.size.width - 10, height: 50))
submitButton.backgroundColor = UIColor.init(red: 180/255, green: 40/255, blue: 56/255, alpha: 1.0)
submitButton.setTitle("Submit", for: .normal)
submitButton.titleLabel?.font = UIFont(name: "Arial", size: 15)
submitButton.titleLabel?.textColor = .white
submitButton.addTarget(self, action: #selector(submit), for: .touchUpInside)
submitButton.layer.cornerRadius = 5
self.view.addSubview(submitButton)
并实现此方法:
override func scrollViewDidScroll(_ scrollView: UIScrollView) {
submitButton.frame = CGRect.init(x: submitButton.frame.origin.x, y: UIScreen.main.bounds.size.height + scrollView.contentOffset.y - 50, width: submitButton.frame.width, height: submitButton.frame.height)
}
答案 6 :(得分:0)
这对我有用:
if let myTopView = Bundle.main.loadNibNamed("MyTopView", owner: self, options: nil)?.first as? MyTopView {
if let view = UIApplication.shared.keyWindow{
view.addSubview(myView);
myTopView.translatesAutoresizingMaskIntoConstraints = false
myTopView.topAnchor.constraint(equalTo: view.topAnchor ).isActive = true
myTopView.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
myTopView.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
myTopView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true
}
}
答案 7 :(得分:0)
O(n²)