私はObjective Cが初めてで、実行時に作成されたUIButtonとUIImageViewを使用して、UIImageViewのアニメーションを画面上のある設定位置から画面上の別の設定位置に切り替えようとしています。UIButton を押すと、UIImageView がある場所から別の場所にアニメーション化し、UIButton の setBackgroundImage が別の imageNamed: 状態に切り替わるようにします。
どんな助けでも大歓迎です!
// UIImageView - Roof Panel Creation
roofPanel = [[UIImageView alloc]initWithFrame:CGRectMake(300, 400, 400, 400)];
[roofPanel setImage:[UIImage imageNamed:@"roof-panel.png"]];
[self.view addSubview:roofPanel];
// UIButton - Panel Lift Button Creation
panelLiftButton = [[UIButton alloc]initWithFrame:CGRectMake(722, 300, 70, 50)];
[panelLiftButton setImage:[UIImage imageNamed:@"panel-lift-button.png"] forState:UIControlStateNormal];
[self.view addSubview:panelLiftButton];