iOS: Why do I have white, rounded corners on my modal view?

前端 未结 9 786
悲哀的现实
悲哀的现实 2021-01-02 00:37

I have a modal view popping up in my iPad app and for some reason it has white, rounded corners.

It might be worth noting I built this model view in my storyboard, n

9条回答
  •  春和景丽
    2021-01-02 00:46

    Try

    [self.view superview].layer.cornerRadius = 21.0f;
    [self.view superview].layer.masksToBounds = YES;
    

提交回复
热议问题