0
我想創建一個UIScrollView - 但它不工作。我只在視圖中看到一個圖像 - swipe1。滾動視圖不向前滾動,但它的空白,我沒有看到其他2個圖像。UIScrollView不起作用,只顯示一個圖像
def create_image_scroll_view_NICE
@scroll_view = UIScrollView.alloc.initWithFrame self.view.bounds
@scroll_view.delegate = self
@scroll_view.scrollsToTop = false
self.view.addSubview @scroll_view
@scroll_view.pagingEnabled = true
@scroll_view.showsHorizontalScrollIndicator = false
@scroll_view.contentSize = CGSizeMake(NUMBER_OF_PAGES * self.view.frame.size.width, self.view.frame.size.height)
@delivery_image = UIImageView.alloc.initWithImage(UIImage.imageNamed("swipe3"))
@scroll_view.addSubview @delivery_image
@notification_image = UIImageView.alloc.initWithImage(UIImage.imageNamed("swipe2"))
@scroll_view.addSubview @notification_image
@box_image = UIImageView.alloc.initWithImage(UIImage.imageNamed("swipe1"))
@scroll_view.addSubview @box_image
end