作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想为我的 iPhone 应用程序创建一个具有视频背景的登录屏幕。查看 this sample 以获得概念引用。
Q:有没有类似UIImageView的可以播放视频的?什么是正确的方法?
编辑
我已设法添加视频并对其进行缩放以适合 View ,但是当我旋转设备时,视频被裁剪了。
代码:
override func viewDidLoad() {
super.viewDidLoad()
var url:NSURL = NSURL(string: "http://jplayer.org/video/m4v/Big_Buck_Bunny_Trailer.m4v")!
moviePlayer = MPMoviePlayerController(contentURL: url)
moviePlayer.view.frame = CGRect(x: 0, y: 0, width: self.view.frame.size.width, height: self.view.frame.size.height)
moviePlayer.controlStyle = MPMovieControlStyle.None
moviePlayer.scalingMode = MPMovieScalingMode.AspectFill
self.view.insertSubview(moviePlayer.view, atIndex: 0)
moviePlayer.play()
}
尝试在运行时添加约束但失败。
如何添加约束以在设备旋转时保持全屏 View ?
最佳答案
我添加了以下约束并且它起作用了。只需让 moviePlayer View 居中,并且它的宽度和高度等于它的父 View 的宽度和高度。
theView.setTranslatesAutoresizingMaskIntoConstraints(false)
var constX = NSLayoutConstraint(item: theView, attribute: NSLayoutAttribute.CenterX, relatedBy: NSLayoutRelation.Equal, toItem: view, attribute: NSLayoutAttribute.CenterX, multiplier: 1, constant: 0)
view.addConstraint(constX)
var constY = NSLayoutConstraint(item: theView, attribute: NSLayoutAttribute.CenterY, relatedBy: NSLayoutRelation.Equal, toItem: view, attribute: NSLayoutAttribute.CenterY, multiplier: 1, constant: 0)
view.addConstraint(constY)
var constW = NSLayoutConstraint(item: theView, attribute: NSLayoutAttribute.Width, relatedBy: NSLayoutRelation.Equal, toItem: view, attribute: NSLayoutAttribute.Width, multiplier: 1, constant: 0)
view.addConstraint(constW)
var constH = NSLayoutConstraint(item: theView, attribute: NSLayoutAttribute.Height, relatedBy: NSLayoutRelation.Equal, toItem: view, attribute: NSLayoutAttribute.Height, multiplier: 1, constant: 0)
view.addConstraint(constH)
关于IOS-如何将视频添加为 ViewController 背景并使用 swift 在运行时添加约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27589463/
我是一名优秀的程序员,十分优秀!