我正在使用swift3我的應用程序包含用於水平滾動的UIscrollview。它包含帶分頁的圖像。下面是它的代碼示例。在iPad上水平滾動時uiscrollview laggging
for index in 0..<storyImages.count {
frame.origin.x = self.scrollView.frame.size.width * CGFloat(index)
frame.size = self.scrollView.frame.size
self.scrollView.isPagingEnabled = true
print(self.scrollView.bounds.width * CGFloat(index))
let rect = CGRect(x: CGFloat(self.scrollView.bounds.width * CGFloat(index)), y: 0, width: scrollViewWidth , height: scrollViewHeight)
let imageView = UIImageView()
imageView.frame = rect
imageView.image = storyImages[index]
self.scrollView.addSubview(imageView)
}
它在所有iPhone上運行都很完美,但是在iPad上執行時同樣的應用水平滾動滯後。請告知
你在哪裏設置scrollview的contentSize? – karthikeyan