Xcode 8에서 그림을 이동하려고합니다. 코드를 가지고 있지만 버튼을 누르면 이미지가 움직이지 않습니다. 누군가가 내가 움직이지 않는 그림에 대한 문제를 해결하도록 도울 수 있습니까?Xcode 8의 버튼으로 이미지 이동
import UIKit
class Level2ViewController: UIViewController {
var image = UIImage(named: "ballon.png")
var imageView = UIImageView(image: "ballon")//initialize properly, this is just for reference
@IBAction func buttonPressed(_ sender: UIButton) {
self.imageView.frame.origin.x += 50
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
/*
// MARK: - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
// Get the new view controller using segue.destinationViewController.
// Pass the selected object to the new view controller.
}
*/
}
처음에 UIImageView 프레임을 설정 했습니까? – toddg
imageView에 제약 조건을 설정 했습니까? – shallowThought
'buttonPressed' 함수의 코드가 실행됩니까? 해당 줄에 중단 점을 넣으면 해당 중단 점에서 앱이 중지되는지 확인할 수 있습니다. 그렇지 않으면 버튼의 onTouchUpInside 이벤트가 연결되지 않을 가능성이 있습니다. – Zhang