Sub SetScaleTransformation(v As View, x As Float, y As Float)
Dim no As NativeObject = Me
no.RunMethod("SetScaleTransformation:::", Array(v, x, y))
End Sub
#if ObjC
- (void) SetScaleTransformation:(UIView*) view :(float)x :(float)y {
view.transform = CGAffineTransformMakeScale(x, y);
}
#End if
Sub SetScaleTransformation(v As View, x As Float, y As Float)
Dim no As NativeObject = Me
no.RunMethod("SetScaleTransformation:::", Array(v, x, y))
End Sub
#if ObjC
- (void) SetScaleTransformation:(UIView*) view :(float)x :(float)y {
view.transform = CGAffineTransformMakeScale(x, y);
}
#End if