collisionBoundsType property
UIDynamicItemCollisionBoundsType
get
collisionBoundsType
The collision type represents how the dynamics system will evaluate collisions with respect to the dynamic item. defaults to UIDynamicItemCollisionBoundsTypeRectangle
Implementation
UIDynamicItemCollisionBoundsType get collisionBoundsType {
objc.checkOsVersionInternal('UIView.collisionBoundsType', iOS: (false, (9, 0, 0)));
if (!objc.respondsToSelector(object$.ref.pointer, _sel_collisionBoundsType)) {
throw objc.UnimplementedOptionalMethodException('UIView', 'collisionBoundsType');
}
final $ret = _objc_msgSend_k9iunc(object$.ref.pointer, _sel_collisionBoundsType);
return UIDynamicItemCollisionBoundsType.fromValue($ret);
}