Example #1
0
 /*</constructors>*/
 public NSAttributedString(String str, NSAttributedStringAttributes attrs) {
   super((SkipInit) null);
   if (attrs == null) {
     throw new NullPointerException("attrs");
   }
   initObject(init(str, attrs.getDictionary()));
 }
 /** @since Available in iOS 5.0 and later. */
 public void setTitleTextAttributes(
     NSAttributedStringAttributes attributes, UIControlState state) {
   if (attributes == null) {
     setTitleTextAttributesDictionary(null, state);
   } else {
     setTitleTextAttributesDictionary(attributes.getDictionary(), state);
   }
 }