KAinone
@KAinone

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

SnapKit レイアウト

解決したいこと

CustomCell を SnapKit でレイアウトしており、imageView の top を contentView(親ビュー) の top から contentView の幅の0.4倍の長さ分 offset させたいのですが、下記のコードのように offset(contentView.snp.width * 0.4) と単純に書いてみたらエラーになってしまいました。そもそも offset(contentView.snp.width) でもダメみたいです。
どのように書けば良いかご教示ください。

該当するソースコード

imageView.snp.makeConstraints {

            $0.size.equalTo(contentView.snp.width).multipliedBy(0.3)
            $0.centerX.equalToSuperview()
            $0.top.equalToSuperview().offset(contentView.snp.width * 0.4)
        }
0

1Answer

Comments

  1. @KAinone

    Questioner

    @woxtu様、前回に続けてご回答ありがとうございます。
    SnapKitに気を取られて基礎的なことを見落としていました...汗
    .offset(contentView.frame.width * 0.4) で理想通りレイアウト出来ました。

Your answer might help someone💌