UIFont.as constructor

UIFont.as(
  1. ObjCObject other
)

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

Implementation

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