14
更新Xcode8無法設置contentSize
爲ScrollView
。我無法使用CGSizeMake
。 任何人都可以幫助我嗎?如何在swift中設置scrollview內容大小3.0
我已經試過
scrollView.contentSize = CGSizeMake(self.view.frame.size.width, 700)
更新Xcode8無法設置contentSize
爲ScrollView
。我無法使用CGSizeMake
。 任何人都可以幫助我嗎?如何在swift中設置scrollview內容大小3.0
我已經試過
scrollView.contentSize = CGSizeMake(self.view.frame.size.width, 700)
從斯威夫特3 CGSizeMake
不可使用CGSize
代替初始化。
scrollView.contentSize = CGSize(width: self.view.frame.size.width, height: 700)
檢查蘋果文檔Core Graphics從Swift 3開始,他們做了很多修改。
感謝Buddy它的工作 –
歡迎伴侶:) –