skip to Main Content

Shadow effect is not working…Swift ios uikit – Ios swift

I am trying make some shadow effect on my logo image but the effect is not showing off.. func setUpLogo(){ view.addSubview(logoView) logoView.translatesAutoresizingMaskIntoConstraints = false logoView.topAnchor.constraint(equalTo: view.topAnchor,constant: 220).isActive = true logoView.widthAnchor.constraint(equalToConstant: 140).isActive = true logoView.heightAnchor.constraint(equalToConstant: 190).isActive = true logoView.centerXAnchor.constraint(equalTo: view.centerXAnchor).isActive =…

VIEW QUESTION
Back To Top
Search