iOS 10 Messages Extension - Wrong Layout when using Storyboard Segue

前端 未结 3 791
北海茫月
北海茫月 2021-02-15 15:56

When using Segues in Messages Extension Application the layout gets messed up.
Is there any way to solve this issue while still using storrybord segues?

3条回答
  •  迷失自我
    2021-02-15 16:10

    in my app, viewcontroller in .expand mode set :

    view.topAnchor.constraint(equalTo: self.topLayoutGuide.bottomAnchor).isActive = true
    

    in .compact mode set it to false

    view.topAnchor.constraint(equalTo: self.topLayoutGuide.bottomAnchor).isActive = false
    

    it should work.

提交回复
热议问题