public virtual void SetTitleTextAttributes(TextAttributes attributes, UIControlState state) { if (attributes == null) throw new ArgumentNullException ("attributes"); using (var dict = attributes.Dictionary){ _SetTitleTextAttributes (dict, state); } }
public void SetScopeBarButtonTitle(TextAttributes attributes, UIControlState state) { if (attributes == null) throw new ArgumentNullException ("attributes"); using (var dict = attributes.Dictionary) { _SetScopeBarButtonTitle (dict, state); } }
public virtual void SetTitleTextAttributes(TextAttributes attributes, UIControlState state) { if (attributes == null) { throw new ArgumentNullException("attributes"); } using (var dict = attributes.Dictionary){ _SetTitleTextAttributes(dict, state); } }
public void SetScopeBarButtonTitle(TextAttributes attributes, UIControlState state) { if (attributes == null) { throw new ArgumentNullException("attributes"); } using (var dict = attributes.Dictionary) { _SetScopeBarButtonTitle(dict, state); } }
public void SetTitleTextAttributes(TextAttributes attributes, UIControlState state) { using (var dict = attributes == null ? null : attributes.Dictionary) _SetTitleTextAttributes (dict, state); }
public void SetTitleTextAttributes(TextAttributes attributes, UIControlState state) { using (var dict = attributes == null ? null : attributes.Dictionary) _SetTitleTextAttributes(dict, state); }