gpt4 book ai didi

swift - 在 tvOS 12 的 TVUIKit 中使用 TVPosterImage

转载 作者:搜寻专家 更新时间:2023-11-01 06:12:53 26 4
gpt4 key购买 nike

tvOS 12 有了新框架 TVUIKit ,它介绍了锁定 View 。我感兴趣的类(class)是TVPosterView ,基本上是这样设计的:

swift 4.2

open class TVPosterView : TVLockupView { // One may use UIControl to implement it in iOS
public init(image: UIImage?)
open var image: UIImage? // default is nil
open var title: String?
open var subtitle: String?
}

在我的 Storyboard中,我添加了一个 UIView 元素,并且正确地(至少我希望如此。昨天 IB 代理一直崩溃!)在 Identity Inspector 中将其类更改为 TVPosterView。然后在我的 UIViewController 中定义了:

@IBOutlet var aPosterView: TVPosterView!

override func viewDidLoad() {
super.viewDidLoad()

if let myIcon = UIImage(named: "icon.png") {
self.aPosterView = TVPosterView(image: myIcon)
self.aPosterView.title = "My Title"
self.aPosterView.subtitle = "A Sub Title"
}
else {
print("ERROR: I couldn't load the icon!")
}
}
}

它编译时没有任何警告。当我运行它时,它只显示 UIView 白色背景,没有任何变化。我做了一些尝试添加 UIImageView 的测试,但它们都没有定论(当然,当我将 UIImageView 的图像设置为 self.aPosterView.image 时除外)。

我远不是专家,几周前才开始学习。知道我缺少什么吗?我认为这个概念是,一旦我开始上课,框架就会负责显示带有(可选)标题和副标题的海报,还负责所有漂亮的动画!

最佳答案

最终我设法让它以编程方式工作。我测试了 TVPosterViewTVMonogramView(基本上是一个圆形按钮)。以下代码适用于 tvOS 12 beta 5 上的 Xcode 10 beta 5:

swift 4.2

import UIKit
import TVUIKit

class SecondViewController: UIViewController {

var myPoster = TVPosterView()
var myMonogram = TVMonogramView()

override func viewDidLoad() {
super.viewDidLoad()

myPoster.frame = CGRect(x: 100, y: 100, width: 550, height: 625)
myPoster.image = UIImage(named: "image1.png")
myPoster.imageView.masksFocusEffectToContents = true
myPoster.title = "Poster"
myPoster.subtitle = "This is the poster subtitle"

self.view.addSubview(myPoster)

var myName = PersonNameComponents()
myName.givenName = "Michele"
myName.familyName = "Dall'Agata"

myMonogram.frame = CGRect(x: 700, y: 100, width: 500, height: 475)
myMonogram.image = UIImage(named: "image2.png")
myMonogram.title = "Monogram"
myMonogram.subtitle = "This is the Monogram subtitle"
myMonogram.personNameComponents = myName

self.view.addSubview(myMonogram)

print(myMonogram.personNameComponents)
}
}

不过,我没能使用 scaleAspectFit 缩放海报的图像。此外,我的第一张图片是圆形的,带有透明度,并且只选择了一个完美适合方形图片和标题的框架尺寸(因此不需要宽高比),发光效果在角落变得透明。否则整个图像是不透明的,使用它自己的(非常小的)圆角。

关于swift - 在 tvOS 12 的 TVUIKit 中使用 TVPosterImage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51553895/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com