私は 'KTSpectrum'と呼ばれるライブラリをインストールしていますので、イメージ上でdominantColorsという拡張子を呼び出してUIColorオブジェクトを返します。タイプUIImageの値はメンバーがありませんdominantColors
import KTSpectrum // this import the kMeans clustering library
@IBOutlet var tempImageView: UIImageView! // this hold a temporary image to be displayed in the view
let image = UIImage(CGImage: cgImageRef!, scale: 1.0, orientation: UIImageOrientation.Right)
self.tempImageView.image = image
self.tempImageView.hidden = false
let colors = self.tempImageView.image!.dominantColors()
// this gives me the error Value of type UIImage has no member dominantColors
私はフレームワークをリンクしてプロジェクト内に構築しました。それでもエラーが何を伝えているのかは分かりません。
plz私たちにKTSpectrumへのリンクを表示 –
リンクとはどういう意味ですか? https://github.com/kylry/KTSpectrum – user3288619
私はドキュメンテーションに従って私が必要とするすべてをしました。同じようなエラーを持つ他のユーザーは、画像をアンラップする必要があると言っています。 – user3288619