私は本当に有線の問題を抱えており、それを解決する方法がわかりません。UIButtonsフレームをアニメーション化していますが、アニメーション化するときに、ボタン内の画像をボタンと同じサイズに拡大縮小したいと思います。iPhoneシミュレータでは何もしなくても動作します。しかし、iPadシミュレーターで実行すると、画像サイズは変更されません。[[gissaImg1 imageView] setContentMode:UIViewContentModeScaleToFill]コードをいくつかの場所に追加しましたが、役に立ちませんでした。
誰かが何が間違っているのか、そしてこの問題を解決する方法を知っていますか?
//Code to set the image
UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"%@_small",
[[itemsForRound objectAtIndex:[[guessItems objectAtIndex:0] intValue]] valueForKey:@"Name"]]];
[self.gissaImg1 setImage:image forState:UIControlStateNormal];
[self.gissaImg1 setImage:image forState:UIControlStateHighlighted];
//Code to animate button
CGRect animateToSpot = (isIphone) ? CGRectMake(0, 0, 480, 320) : CGRectMake(0, 0, 1024, 768);
[self performSelector:@selector(PlayCorrectSound:) withObject:nil afterDelay:1];
[[gissaImg1 imageView] setContentMode:UIViewContentModeScaleToFill];
[UIView animateWithDuration:1.5 delay:0 options:(UIViewAnimationOptionAllowUserInteraction | UIViewAnimationCurveLinear) animations:^{
switch (index) {
case 0:
[[gissaImg1 imageView] setContentMode:UIViewContentModeScaleToFill];
[self.gissaImg1 setFrame:animateToSpot];
[self.view bringSubviewToFront:gissaImg1];
break;
.......