-2
認爲是出入畫面時,我知道如何使由左到右的觀點,但與此相反,我不知道有什麼看法的原始座標,如果它來自右側如何在iOs中顯示從右側到左側的視圖?
rightImage = [[UIImageView alloc]init];
rightImage.size = CGSizeMake(kScreenWidth*5/9, kScreenHeight*5/12);
CGPoint rightImageCenter = rightImage.center;
rightImageCenter.x += kScreenWidth + 100;
rightImageCenter.y = kScreenHeight * 0.6;
rightImage.center = rightImageCenter;
[UIView animateWithDuration:0.3 animations:^{
rightCenter.x -= 200;
rightCenter.y += kScreenHeight*0.6;
UIImage *image=[UIImage imageNamed:@"pic.png"];
rightImage.image=image;
rightImage.center = rightCenter;
label.text = arr[1];
} completion:nil];
你到底想要什麼?寫足夠的細節。沒有正確地得到你的問題 – Lion
你到目前爲止嘗試了什麼? – rahulroy9202
@獅子,有一個視圖出來的屏幕,我想做一個動畫,並從右側移動視圖到左邊 – WPEvergreen