UIView.as constructor

UIView.as(
  1. ObjCObject other
)

Constructs a UIView that points to the same underlying object as other.

Implementation

UIView.as(objc.ObjCObject other) : object$ = other {
  objc.checkOsVersionInternal('UIView', iOS: (false, (2, 0, 0)));
  assert(isA(object$));
}