1
新しい画像を割り当てると、自分のアプリの画像は更新されません。UIImageViewで画像を更新すると、UIImageの割り当てが迅速に行われない
func updateUI() {
nameField.text = founders[founderIndex].name
print("founders[founderindex].image",founders[founderIndex].image)
print("picture.image",picture.image!)
print(picture)
picture.image = founders[founderIndex].image
print("founders[founderindex].image ",founders[founderIndex].image)
print("picture.image",picture.image!)
}
のように、このため出力が見えます:founders[founderIndex].image
が今までpicture.image
に割り当てられません
founders[founderindex].image <UIImage: 0x17409b710> size {1200, 1200} orientation 0 scale 1.000000
picture.image <UIImage: 0x17409b490> size {1200, 1200} orientation 0 scale 1.000000
<UIImageView: 0x100f14d20; frame = (125 3; 124 124); autoresize = RM+BM; userInteractionEnabled = NO; layer = <CALayer: 0x174038da0>>
founders[founderindex].image <UIImage: 0x17409b710> size {1200, 1200} orientation 0 scale 1.000000
picture.image <UIImage: 0x17409b490> size {1200, 1200} orientation 0 scale 1.000000
。私は見回しましたが、初期化されたイメージから変更することはできませんでした。
'print(創始者[founderIndex] .image)'、出力は何ですか? –
コードの画像を投稿しないでください。イメージを実際のコードコピーに置き換え、テキストとして貼り付けてください。 – rmaddy
@ Mr.UB質問に表示されるログ出力の最初の行です。 – rmaddy