0
我一直在研究IOS和做小應用程序,將大圖加載到應用程序中,並且已加載的圖像的應用程序頂部有一個小的貼紙圖像,可以拖動大圖像並放置它隨處可見。在另一個圖像IOS上的可拖動圖像Swift
首先我已經通過添加的UIScrollView到MainViewController完成,加入的ImageView到像下面
override func viewDidLoad() {
super.viewDidLoad()
scrollView.delegate = self
imageView.frame = CGRectMake(0, 0, scrollView.frame.size.width, scrollView.frame.size.height)
imageView.image = UIImage(named: "demo")//Big Image
imageView.userInteractionEnabled = true
scrollView.addSubview(imageView)
scrollView.contentSize.height = 400
}
我已經放置的那UIScrollView
小圖像頂部,但是當我通過頂部和底部拖動Big Image
也滾動small image
。我只想拖動小圖片。我怎樣才能做到這一點?