我設置一個隨機的背景圖片爲我的應用程序通過加載圖像並將其添加到我的視圖縮放:設置視網膜背景圖像出現在
UIImageView *background = [[UIImageView alloc]
initWithImage:[UIImage imageNamed:
[NSString stringWithFormat:@"bg%u.jpg", 1+arc4random_uniform(15)]]];
[self.view addSubview:background];
[self.view sendSubviewToBack:background];
我的圖片640x1136在326 PPI,但圖像出於某種原因放大。任何想法爲什麼會被讚賞。
模擬器
實際圖像:
感謝。
與PNG文件,而不是嘗試。這可能是轉換問題 –
@Nick background.frame = self.view.frame;然後addSubView: – Spynet
@ b3ginneriOS轉換爲PNG不幸的是似乎不工作。 –