ios - 在 UIView 中添加 UIImageView 到 View 的正中心
<p><p>我添加 <code>UIView</code> 的大小等于屏幕大小,而不是添加 <code>UIImageView</code> 到这个 View 。我想将这个 <code>UIImageView</code> 设置在 <code>UIView</code> 的正中心。因此,我以编程方式执行此操作,不能通过 Storyboard 设置约束。以下是我的代码:</p>
<pre><code>UIView* viewForImage = [ initWithFrame:screenRect];
CGRect rect = CGRectMake(0, 0, 100, 200);
UIImageView* imgcoverView = [ initWithFrame:rect];
imgcoverView.backgroundColor = [ colorWithAlphaComponent:0.9];
imgcoverView.image = imgView.image;
;
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><pre><code>imgcoverView.center = CGPointMake(viewForImage.frame.size.width/2,viewForImage.frame.size.height/2) ;
</code></pre></p>
<p style="font-size: 20px;">关于ios - 在 UIView 中添加 UIImageView 到 View 的正中心,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/33800831/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/33800831/
</a>
</p>
页:
[1]