We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://stackoverflow.com/questions/38780743/how-can-i-bring-a-view-in-front-of-another-view-in-swift
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
https://zeddios.tistory.com/m/832
요렇게 만들고 싶은데,
이렇게 되었다..!
해결방법은!!
contentview를 기준으로 sendSubviewToBack 을 해주었다!
contentview
func createLayout() { contentView.addSubviews([imageView, emojiView, menuLabel, dateLabel]) contentView.sendSubviewToBack(emojiView) emojiView.snp.makeConstraints { $0.top.equalToSuperview() $0.leading.equalToSuperview().offset(9) $0.width.height.equalTo(30) } imageView.snp.makeConstraints { $0.top.equalToSuperview().inset(15) $0.leading.trailing.equalToSuperview() $0.width.height.equalTo(167) }
No branches or pull requests
https://stackoverflow.com/questions/38780743/how-can-i-bring-a-view-in-front-of-another-view-in-swift
The text was updated successfully, but these errors were encountered: