extension CGRect {
public init(center: CGPoint, size: CGSize) {
origin = CGPoint(x: center.x-size.width/2, y: center.y-size.height/2)
self.size = size
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)