在我的應用程序中,我有一個大尺寸圖像800 x 2000.我想在UIImageView中顯示此圖像,此圖像也是可滾動的。如何使用UIImageView顯示大尺寸圖像
我試過下面的代碼。
UIImage *img=[UIImage imageNamed:@"About_CVR_Detail"];
self.aImgView.frame=CGRectMake(0,0, Screen_Width,img.size.height);
self.aImgView.image=img;
self.aScrollView.contentSize=CGSizeMake(Screen_Width, self.aImgView.frame.size.height);
,也將ty這其中也:
self.aScrollView.backgroundColor=[UIColor colorWithPatternImage:[UIImage imageNamed:@"About_CVR_Detail"]];
在此先感謝
非常感謝你。這個解決方案非常棒。 :)這是我想要的 –