我在一个使用拆分 UIView 的程序中有这段代码,现在在您单击第一个选项后,您将被带到一个新的 leftviewcontroller 大约 10 个选项。当您选择这 10 个中的一个时,您会看到左侧的新选项和右侧视图控制器中的图片。
这在 IOS5 中有效,我如何尝试将我的程序也移植到 IOS7 中,但是一切正常,但我没有得到我也习惯的右边的图片。这是代码
if ([receivedRainObject isEqualToString:@"TEST"]) {
self.lblSelWhale.text=@"SHOW UP;
[self.label2 removeFromSuperview];
NSLog(receivedRainObject);
// [self.view addSubview:self.lblSelWhale];
[self.view setNeedsDisplay];
// CGRectMake(<#CGFloat x#>, <#CGFloat y#>, <#CGFloat width#>, <#CGFloat height#>)
UIImage *image=[UIImage imageNamed:@"bowheadtree.tif"];
[imgClassification setImage:image];
// imgClassification.frame=CGRectMake(0, 80, 700, 500);
imgClassification.frame=CGRectMake(50, 100, 600, 400);
[self.view addSubview:self.imgClassification];
imgClassification.frame=CGRectMake(50, 100, 600, 400);
}
我应该注意到 Nslog 返回“TEST”就好了,但图片没有显示。任何帮助解决这个问题将不胜感激。谢谢