bounds$1 property

CGRect get bounds$1

bounds

Implementation

objc.CGRect get bounds$1 {
  objc.checkOsVersionInternal('UIView.bounds', iOS: (false, (2, 0, 0)));
  final $ptr = pkg_ffi.calloc<objc.CGRect>();
  objc.useMsgSendVariants
      ? _objc_msgSend_bu1hbwStret($ptr, object$.ref.pointer, _sel_bounds)
      : $ptr.ref = _objc_msgSend_bu1hbw(object$.ref.pointer, _sel_bounds);
  final $finalizable = $ptr.cast<ffi.Uint8>().asTypedList(
    ffi.sizeOf<objc.CGRect>(),
    finalizer: pkg_ffi.calloc.nativeFree,
  );
  return ffi.Struct.create<objc.CGRect>($finalizable);
}
set bounds$1 (CGRect value)

setBounds:

Implementation

set bounds$1(objc.CGRect value) {
  objc.checkOsVersionInternal('UIView.setBounds:', iOS: (false, (2, 0, 0)));
  _objc_msgSend_1okkq16(object$.ref.pointer, _sel_setBounds_, value);
}