3

如何将@IValue CGFloat 转换为 Int?

我不断收到cannot convert @IValue CGFloat to Integer以下内容:

@IBOutlet var userObject : UIImageView


func returnYPosition(yPosition: Integer) -> Integer {
    return userObject.center.y
}
4

1 回答 1

5

您需要Int来回传递类型,然后只需转换:

func returnYPosition(yPosition: Int) -> Int {
    return Int(userObject.center.y)
}
于 2014-08-17T02:26:59.267 回答