OStack程序员社区-中国程序员成长平台

标题: ios - 在 UIView 中添加 UIImageView 到 View 的正中心 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 17:16
标题: ios - 在 UIView 中添加 UIImageView 到 View 的正中心

我添加 UIView 的大小等于屏幕大小,而不是添加 UIImageView 到这个 View 。我想将这个 UIImageView 设置在 UIView 的正中心。因此,我以编程方式执行此操作,不能通过 Storyboard 设置约束。以下是我的代码:

UIView* viewForImage = [[UIView alloc] initWithFrame:screenRect];
CGRect rect = CGRectMake(0, 0, 100, 200);
UIImageView* imgcoverView = [[UIImageView alloc] initWithFrame:rect];
imgcoverView.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.9];
imgcoverView.image = imgView.image;
[viewForImage addSubview:imgcoverView];



Best Answer-推荐答案


imgcoverView.center = CGPointMake(viewForImage.frame.size.width/2,viewForImage.frame.size.height/2) ;

关于ios - 在 UIView 中添加 UIImageView 到 View 的正中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33800831/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4