/** @since Available in iOS 4.0 and later. */ public long getHeight() { if (has(Keys.Height())) { NSNumber val = (NSNumber) get(Keys.Height()); return val.longValue(); } return 0; }
/** @since Available in iOS 4.0 and later. */ public AVVideoSettings setHeight(long height) { set(Keys.Height(), NSNumber.valueOf(height)); return this; }