/** @since Available in iOS 7.0 and later. */ public boolean shouldExcludeXMP() { if (has(Keys.MetadataShouldExcludeXMP())) { CFBoolean val = get(Keys.MetadataShouldExcludeXMP(), CFBoolean.class); return val.booleanValue(); } return false; }
/** @since Available in iOS 7.0 and later. */ public CGImageDestinationCopySourceOptions setShouldExcludeXMP(boolean shouldExcludeXMP) { set(Keys.MetadataShouldExcludeXMP(), CFBoolean.valueOf(shouldExcludeXMP)); return this; }