0
你好我有一個UIImageView作爲我的背景設置在UITableView中。在肖像中看起來不錯。我希望細胞旋轉,但是,我希望圖像背景不旋轉。iOS UIImageView作爲UITableView背景,防止旋轉
當它將其大小調整爲較小時,其周圍會出現黑條。
這是部分得到我想要完成的代碼。
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"image.png"]];
imageView.contentMode = UIViewContentModeScaleAspectFit;
self.tableView.backgroundColor = [UIColor clearColor];
self.tableView.backgroundView = imageView;
我希望有一些代碼,這將使背景旋轉豁免。你們有什麼感想?
感謝