As topLayoutGuide property is deprecated in iOS 11, What is alternative to use top layout guide ?
backView.topAnchor.constraint(equalTo: topLayoutGuide.topAnchor)
As topLayoutGuide property is deprecated in iOS 11, What is alternative to use top layout guide ?
backView.topAnchor.constraint(equalTo: topLayoutGuide.topAnchor)
TopLayoutGuide is deprecated in iOS 11 so we have option to use SafeAreaLayoutGuide like this :
let guide = view.safeAreaLayoutGuide
Second add constraint to guide
searchBackView.topAnchor.constraint(equalTo: guide.bottomAnchor).isActive = true