我正在嘗試將UIImage
添加到UIView
。 圖像正好在視圖的大小 - 當我定義視圖矩形。 不知何故,我看到圖像顯示得更寬,更高(延伸)。 爲什麼我的觀點是改變圖像尺寸?UIView更改圖像的大小?
UIImage *strip=[UIImage imageNamed:@"albumStrip.png"];
UIImageView *imageView=[[UIImageView alloc]initWithImage:strip];
UIView * aView = [ [UIView alloc] initWithFrame:CGRectMake(0.03*winSize.width, 0.85*winSize.height , 0.95*winSize.width, winSize.width/10) ];
aView.backgroundColor = [UIColor whiteColor];
aView.tag = 31000;
aView.layer.cornerRadius=1;
[aView addSubview:imageView];
編輯: 我可以看到我的形象是640×960。是否有可能爲iPhone4 UIImage不知道如何把它和因子2分開?
感謝它沒有工作:( – Curnelious 2013-04-29 07:57:05
獲取錯誤或什麼隊友? – 2013-04-29 07:58:06
嘗試'aview.layer.masksToBounds = YES;' – 2013-04-29 07:59:04