私は次のものがありますViewController
クラスライブ写真を表示しようとしています。それは私が私の資産に追加したライブ画像でどのように機能するかライブフォトを表示する、swift
let image = UIImage(imageNamed: "someStringPointingToImage") //then add this to the image view.
しかし、誰もが知っているん:私は実際に私はこのような何かを書くとUIImageViewを扱うに表示する画像を取得する方法を正確にわかりません?
機能
import UIKit
import Photos;
import PhotosUI
import MobileCoreServices
class ViewController: UIViewController, PHLivePhotoViewDelegate {
var livePhotoIsAnimating = Bool()
override func viewDidLoad() {
super.viewDidLoad()
self.livePhotoView()
}
//MARK: Create the Live Photoview
func livePhotoView() {
let photoView: PHLivePhotoView = PHLivePhotoView.init(frame: self.view.bounds)
//%%%%%%% Area to add the image %%%%%%
photoView.contentMode = .ScaleAspectFill
self.view.addSubview(photoView)
self.view.sendSubviewToBack(photoView)
}
func livePhotoView(livePhotoView: PHLivePhotoView, willBeginPlaybackWithStyle playbackStyle: PHLivePhotoViewPlaybackStyle) {
self.livePhotoIsAnimating = true
}
func livePhotoView(livePhotoView: PHLivePhotoView, didEndPlaybackWithStyle playbackStyle: PHLivePhotoViewPlaybackStyle) {
self.livePhotoIsAnimating = false
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
感謝。
アセットの場合は、単にその名前を使用してください... –
ライブではどういう意味ですか? – Gruntcakes