/** * @since Available in iOS 3.2 and later. * @deprecated Deprecated in iOS 8.0. */ @Deprecated public UIFont getFont() { if (has(Keys.Font())) { UIFont val = (UIFont) get(Keys.Font()); return val; } return null; }
/** * @since Available in iOS 3.2 and later. * @deprecated Deprecated in iOS 8.0. */ @Deprecated public UITextInputTextStyle setFont(UIFont font) { set(Keys.Font(), font); return this; }