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