瀏覽代碼

Themed UIBarButtonItem: iOS 7 appearance fix

Felix Paul Kühne 11 年之前
父節點
當前提交
9857015bbe
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      AspenProject/UIBarButtonItem+Theme.m

+ 2 - 2
AspenProject/UIBarButtonItem+Theme.m

@@ -26,9 +26,9 @@
         [doneButton setBackgroundImage:[UIImage imageNamed:@"doneButtonHighlight"]
                               forState:UIControlStateHighlighted
                             barMetrics:UIBarMetricsDefault];
+        [doneButton setTitleTextAttributes:@{UITextAttributeTextShadowColor : [UIColor whiteColor], UITextAttributeTextColor : [UIColor blackColor]}
+                                  forState:UIControlStateNormal];
     }
-    [doneButton setTitleTextAttributes:@{UITextAttributeTextShadowColor : [UIColor whiteColor], UITextAttributeTextColor : [UIColor blackColor]}
-                              forState:UIControlStateNormal];
     return doneButton;
 }