ios 7 view with transparent content overlaps previous view

前端 未结 9 1681
独厮守ぢ
独厮守ぢ 2020-12-23 20:25

Recently I updated my xcode project to work with iOS 7, but i faced a big problem. Because my whole application has only one background image (UIImageView added to key windo

9条回答
  •  暖寄归人
    2020-12-23 21:11

    I fixed it by doing this when initialising the view:

    self.view.clipsToBounds = YES;
    

提交回复
热议问题