Swift Function to Objective C [closed]

- (CGPoint) convertPoint: (CGPoint) point {
    return [self.view convertPoint: CGPointMake(point.x, self.view.frame.size.height - point.y) toScene: self];
}

Leave a Comment