目前試圖訪問的UIImageView
一個UIImage
屬性來實例化另一個UIImage
對象。只是我試圖做到這一點。無法訪問的UIImageView圖像
UIImage *myImage = myExistingView.image;
但是該屬性不會設置。我不斷爲myImage取得零值。
我想複製的圖像,最終做這樣的事情
UIImageView *newImageView = [[UIImageView alloc] initWithImage:myImage];
,但我似乎無法得到它。建議?
編輯。最近的嘗試沒有奏效。
UIImageView *newView = [[UIImageView alloc] initWithImage:[[UIImage alloc] initWithData:UIImagePNGRepresentation(myImageView.image)]];
多一點的代碼可以幫助 –
哪裏,願意複製圖像!我看到你發佈的代碼沒有問題...你可以測試它是否保存了這樣的圖像 UIImage * image = myExistingView.image; 的UIImageView * imagev = [[ALLOC的UIImageView] initWithImage:圖片]; [targetimageview setImage:imagev.image]; –
你在哪裏/如何爲myExistingView設置圖像? – MikeS