所以我創建了一個滾動視圖並在其中放置了一個圖像視圖。我將滾動視圖初始化爲一個變量,並在我的ViewController中編寫了下面的代碼,但圖像不會滾動。 有什麼問題?Swift:帶圖像視圖的滾動視圖未啓用?
後來我還需要在這個滾動視圖中放置幾個按鈕,所以如果我在這裏丟失了某些東西,如果你可以解決按鈕問題,它也會很棒。
我的代碼:
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
ScrollView.scrollEnabled = true
}
@IBOutlet weak var ScrollView: UIScrollView!
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
滾動視圖和圖像視圖的幀分別是什麼? – cph2117 2014-08-28 02:16:22
@ user1840001在他們的大小? – skyguy 2014-08-28 03:17:34
尺寸和原點 – cph2117 2014-08-28 03:26:45