ios - 以编程方式约束

标签 ios iphone swift nslayoutconstraint

我需要一些关于此 View 的帮助。实际上我想降低绿色按钮的高度。我尝试以各种方式修复它,但要么使应用程序崩溃,要么无法正常工作。

谁能告诉我怎么解决?

有问题的 View 的屏幕截图:

View

在此处以编程方式进行。我必须降低高度的绿色部分称为“buttonShare”

private extension DropPreviewView {

struct Constants {
    static let regionSpan: CLLocationDistance = 250
    static let cornerRadius: CGFloat = 10
    static let headerHeight: CGFloat = 60
}

func setupUI() {

    buttonShare.do {
        $0.backgroundColor = .green
        $0.addTarget(self, action: #selector(didTapOutsideView), for: .touchUpInside)
    }

    blurredBackgroundView.do {
        $0.effect = UIBlurEffect(style: .dark)
        let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(didTapOutsideView))
        $0.addGestureRecognizer(tapGestureRecognizer)
    }

    spinner.do {
        $0.hidesWhenStopped = true
        $0.color = .darkGray
        $0.startAnimating()
    }

    contentView.do {
        $0.backgroundColor = .white
        $0.clipsToBounds = true
        $0.layer.cornerRadius = Constants.cornerRadius
    }

    dropPreviewImageView.do {
        $0.contentMode = .scaleAspectFill
        $0.clipsToBounds = true
        $0.isUserInteractionEnabled = true
        let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(didTapOnPreviewImage))
        $0.addGestureRecognizer(tapGestureRecognizer)
    }
}

func arrangeSubviews() {

    addSubview(blurredBackgroundView, constraints: [
        blurredBackgroundView.topAnchor.constraint(equalTo: topAnchor),
        blurredBackgroundView.leftAnchor.constraint(equalTo: leftAnchor),
        blurredBackgroundView.bottomAnchor.constraint(equalTo: bottomAnchor),
        blurredBackgroundView.rightAnchor.constraint(equalTo: rightAnchor),
        ])

    addSubview(contentView, constraints: [
        contentView.widthAnchor.constraint(equalTo: widthAnchor, multiplier: 0.8),
        contentView.heightAnchor.constraint(equalTo: heightAnchor, multiplier: 0.7),
        contentView.centerXAnchor.constraint(equalTo: centerXAnchor),
        contentView.centerYAnchor.constraint(equalTo: centerYAnchor),
        ])

    addSubview(buttonShare, constraints: [
        buttonShare.centerXAnchor.constraint(equalTo: centerXAnchor)
        ])

    header.addConstraint(
        header.heightAnchor.constraint(equalToConstant: Constants.headerHeight)
    )

    let innerStack = UIStackView(arrangedSubviews: [dropPreviewImageView, buttonShare]).then {
        $0.distribution = .fillEqually
        $0.axis = .vertical
        $0.spacing = 10
    }

    let stackView = UIStackView(arrangedSubviews: [header, innerStack, buttonShare]).then {
        $0.axis = .vertical
        $0.distribution = .fill
        $0.spacing = 10
    }

    contentView.addSubview(stackView, constraints: [
        stackView.topAnchor.constraint(equalTo: contentView.layoutMarginsGuide.topAnchor),
        stackView.leftAnchor.constraint(equalTo: contentView.layoutMarginsGuide.leftAnchor),
        stackView.bottomAnchor.constraint(equalTo: contentView.layoutMarginsGuide.bottomAnchor),
        stackView.rightAnchor.constraint(equalTo: contentView.layoutMarginsGuide.rightAnchor),
        ])
    dropPreviewImageView.addSubview(spinner, constraints: [
        spinner.centerXAnchor.constraint(equalTo: dropPreviewImageView.centerXAnchor),
        spinner.centerYAnchor.constraint(equalTo: dropPreviewImageView.centerYAnchor),
        ])
}

最佳答案

尝试:

    addSubview(buttonShare, constraints: [
        buttonShare.centerXAnchor.constraint(equalTo: centerXAnchor)
        buttonShare.heightAnchor.constraint(equalToConstant: 50).isActive = true
        buttonShare.bottomAnchor.constraint(equalTo: contentView.bottomAnchor, constant: 12).isActive = true
        ])

编辑:您需要将绿色 View 上方的 View 底部锚定到按钮的顶部。确保这是在上面的代码之后

关于ios - 以编程方式约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50525246/

相关文章:

objective-c - Xcode 的 OCUnit 测试可以在 iOS 设备而不是模拟器上运行吗

ios - 可以使用带有 itms-services 的自签名 SSL 证书

ios - 链接器错误 : ld: library not found for -lAppLovinSdk

android - 从另一个应用程序(Android/iPhone 应用程序)屏幕抓取/访问数据

ios - UICollectionView 选择和取消选择

ios - CMP计步器数据超过7天

iphone - 将数组中的值设置为零

ios - 如何只为 UIView 的左下角、右下角和左上角设置 cornerRadius?

iphone - 如何在每次启动时重置iPhone App状态?

ios - 在 UITableviewCell 中使用自动布局