我为我的 UIButtons 设置了不同的图像,如下所示:
[testButton setFrame:CGRectMake(0.0f, 416.0f, 64.0f, 64.0f)];
[testButton setImage:[UIImage imageNamed:@"test.png"] forState:UIControlStateNormal];
(各种图像具有不同的尺寸,我将 UIButtons 调整为不同的尺寸)
这在 iPhone 6.0 模拟器中按预期工作,但图像不会显示在实际 iOS 6.0 iPhone 的按钮上;按钮不可见,尺寸位置正确。
我希望在 iPhone 设备上具有相同的按钮行为;如何进行?