我有UIView
它不像整个屏幕那么大,我希望它出现在屏幕中间。我使用以下代码做到了这一点:
self.dialogView.center = CGPointMake(self.view.bounds.size.width / 2.0, self.view.bounds.size.height / 2.0);
不幸的是,当我这样居中时,UIView
的内容显得模糊。
我已经用这个修复了它:
self.dialogView.center = CGPointMake(self.view.bounds.size.width / 2.0 + 0.5, self.view.bounds.size.height / 2.0);
现在 UIView 的内容应该会出现:)
你能告诉我为什么那个内容变得模糊,为什么我需要在左边的位置偏移上加上 0.5 吗?