uiview – 如何在Swift主视图中添加子视图

前端之家收集整理的这篇文章主要介绍了uiview – 如何在Swift主视图中添加子视图前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要建议如何进行.

如何稍微调暗主视图并显示一些繁忙的指示灯,持续一段时间的动作,然后去除调光?

Swift语言

谢谢!

UPD:在Objective-C中,我早期使用这样的东西:

UIView *dimView = [[UIView alloc] initWithFrame:CGRectMake(0,320,460)];
dimView.backgroundColor = [UIColor blackColor];
dimView.alpha = 0.5f;
dimView.tag = 1111;
dimView.userInteractionEnabled = NO;
[self.view addSubview:dimView];

我们可以在Swift中如何使用此代码

做如下,我已经检查,工作在Swift – iOS 8

我们必须用框架初始化视图,然后我们必须设置.alpha属性来缩小视图.

let testFrame : CGRect = CGRectMake(0,200,200)
var testView : UIView = UIView(frame: testFrame)
testView.backgroundColor = UIColor(red: 0.5,green: 0.5,blue: 0.5,alpha: 1.0)
testView.alpha=0.5
self.view.addSubview(testView)

而.addSubview会在主视图中添加视图.

快乐编码:)

原文链接:https://www.f2er.com/swift/318768.html

猜你在找的Swift相关文章