- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
所以我尝试使用以下代码以编程方式向我的 View 添加约束。我正在尝试将 32 的顶部空间和 16 的前导空间添加到以编程方式添加到我的 View Controller 之一的 View 中,但我似乎遇到了一些问题。
下面是我如何将按钮返回到我的 View 以便以编程方式添加它的示例。
// Creating the button
func createDismissButton(vwParentView: OnboardingViewController) -> UIButton {
let dismissButton = UIButton()
dismissButton.setImage(UIImage(named: "Close"), forState: .Normal)
dismissButton.frame = CGRectMake(16, 32, 34, 34)
dismissButton.addTarget(self, action: "dismiss:", forControlEvents: .TouchUpInside)
// AUTO LAYOUT
// WIDTH & HEIGHT
let dismissWidthButtonConstraint = NSLayoutConstraint (item: dismissButton,
attribute: NSLayoutAttribute.Width,
relatedBy: NSLayoutRelation.Equal,
toItem: nil,
attribute: NSLayoutAttribute.NotAnAttribute,
multiplier: 1,
constant: 34)
let dismissHeightButtonConstraint = NSLayoutConstraint (item: dismissButton,
attribute: NSLayoutAttribute.Width,
relatedBy: NSLayoutRelation.Equal,
toItem: nil,
attribute: NSLayoutAttribute.NotAnAttribute,
multiplier: 1,
constant: 34)
// SPACING
let dismissButtonTopConstraint = NSLayoutConstraint(item: dismissButton,
attribute: .Top,
relatedBy: .Equal,
toItem: vwParentView.view,
attribute: .Top,
multiplier: 1.0,
constant: 32)
let dismissButtonLeftConstraint = NSLayoutConstraint(item: dismissButton,
attribute: .Leading,
relatedBy: .Equal,
toItem: vwParentView.view,
attribute: .Leading,
multiplier: 1.0,
constant: 16)
dismissButton.addConstraint(dismissWidthButtonConstraint)
dismissButton.addConstraint(dismissHeightButtonConstraint)
dismissButton.addConstraint(dismissButtonTopConstraint)
dismissButton.addConstraint(dismissButtonLeftConstraint)
return dismissButton
}
但它似乎在我添加 vwParentView.view
的间距上失败了,因为它在日志中出现了关于项目属性必须是 View 的错误。但是现在,当我使用这些属性运行代码时,出现以下错误。
“NSInternalInconsistencyException”,原因:“无法使用未准备好约束的 View 层次结构来设置布局。”
我正在尝试将此按钮添加到 View 中,该 View 也是通过编程方式创建的,如下所示。
override func viewWillAppear(animated: Bool) {
// Add the view below to the current view controller
self.view.addSubview(generatePurchasePaging().view)
}
func generatePurchasePaging() -> OnboardingViewController {
let welcomePage = OnboardingContentViewController(title: "PAY WHAT YOU WANT", body: "I made my app so you could have the best experience reading tech related news. That’s why I want you to value it based on your satisfaction.", image: UIImage(named: "Purchase-Pig"), buttonText: "") { () -> Void in
}
let firstPurchasePage = OnboardingContentViewController(title: "MINT", body: "The app is great but there’s still a few places in room of improvement. If this is your feeling this is for you.", image: UIImage(named: "Purchase-Mint"), buttonText: "69p") { () -> Void in
}
let secondPurchasePage = OnboardingContentViewController(title: "SWEET", body: "IThis is the suggested price where you value the time I spent on development and design. Feel free to pay more or less.", image: UIImage(named: "Purchase-Lolly"), buttonText: "£1.49") { () -> Void in
}
let thirdPurchasePage = OnboardingContentViewController(title: "GOLD", body: "Hello is it me your looking for, if this popped into your mind using the app then this is the price for you.", image: UIImage(named: "Purchase-Coin"), buttonText: "£2.99") { () -> Void in
}
let purchaseVC = OnboardingViewController(backgroundImage: nil, contents: [welcomePage, firstPurchasePage, secondPurchasePage, thirdPurchasePage])
purchaseVC.shouldMaskBackground = false
purchaseVC.view.addSubview(createDismissButton(purchaseVC))
return purchaseVC
}
最佳答案
一些想法:
当您以编程方式创建 View 时,translatesAutoresizingMaskIntoConstraints
默认为 true
。关闭此功能。
在将另一个 View (它的父 View ?)添加到 View 层次结构之前,您要对其设置约束。因此,请确保 (a) 您首先执行 addSubiew
并且 (b) 应将此约束添加到最近的公共(public)父级(通常是父 View ),而不是按钮本身。 .NotAnAttribute
约束可以添加到按钮,但其余的应该添加到最近的公共(public)父级。
您同时设置了约束和框架
。如果你做前者,则不需要后者。
如果您在采取上述措施后仍然无法正常工作,请分享错误的全文,而不仅仅是单行消息。
关于swift - NSLayout 约束失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34285045/
如何使用 Storyboard更改图像的位置并使用 NSLayoutAttribute 从左到右进行约束? 最佳答案 我使用 NSLayoutConstraint 的 2 个 IBOutlet 作为前
所以我尝试使用以下代码以编程方式向我的 View 添加约束。我正在尝试将 32 的顶部空间和 16 的前导空间添加到以编程方式添加到我的 View Controller 之一的 View 中,但我似乎
我正在尝试重新创建它,但我不知道如何连接这个约束: Storyboard中的 RootViewController 存在约束,其中未选中“已安装”复选框: 但它看起来像是与 RootViewContr
下面我的 swift 代码在 View 加载时使用 nslayout 约束。我尝试在 ImageView 上放置一个 uipangestureRecognizer 。使 ImageView 在 uiv
我的 UIViewController 中有一个变量,它与设置 UITextView 高度的约束相关联: var textViewHeight: Int! 这是约束条件: self.view.addC
我仍在使用 Xcode 和 Swift 开发我的第一款 iPhone 游戏。 游戏运行良好,所以我认为我可以为游戏添加一些功能。其中之一是玩家可以看到他的统计数据的场景。 所以我为场景 (SKSpri
我正在添加一个 UI 标签,我正在尝试编程 UI 代码。我使用以下代码设置标签: let titleLabel: UILabel = { let lb = UILabel() lb.t
我是一名优秀的程序员,十分优秀!