Swift中按钮的坐标
Posted
技术标签:
【中文标题】Swift中按钮的坐标【英文标题】:Coordinates of Buttons in Swift 【发布时间】:2014-09-22 11:59:44 【问题描述】:我对 swift 和编程相当陌生,并且有一个非常简单的问题。 我在 UI 中有四个带有自定义图像的按钮,我试图在按下的按钮后面放置一个周围的图形。这是代码行:
@IBAction func moodButton(sender: AnyObject)
timerSelection.center = CGPointMake(moodButton.center.x, moodButton.center.y)
timerSelection
是UIImageView
我试图将其置于所选按钮的坐标...
请帮忙! & 提前致谢:)
【问题讨论】:
【参考方案1】:试试这样的:
@IBAction func moodButton(sender: UIButton)
timerSelection.center = sender.center
您可以将此子视图发送回之前:
view.sendSubviewToBack(timerSelection)
【讨论】:
以上是关于Swift中按钮的坐标的主要内容,如果未能解决你的问题,请参考以下文章