コードは非常に基本的なものです:
UIImageView *testView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 80, 80)];
[self.view addSubview:testView];
[testView setImage:[UIImage imageNamed:@"button.png"]];
[UIView animateWithDuration:100
animations:^{testView.center = CGPointMake(140,350);}
completion:^(BOOL finished){NSLog(@"animation finished");
}
];
どういうわけか、アニメーションは機能しません。画像は終了位置にのみ表示されます。ただし、NSLog メッセージは表示されます。
アニメーションが失敗する可能性があることを誰かが知っていますか?
どうもありがとうございました。