2015-02-24 78 views
0

我已經把我的導航控制器titleTextAttributes使用自定義的字體,我用下面的代碼爲這個自定義設置字體以及文本顏色

[self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIFont fontWithName:@"Neon80s" size:21],NSFontAttributeName, nil]]; 

我想包括這一個顏色嗎?如果我單獨對自定義字體做了過分修飾,所以我猜測的顏色需要包含在上述方法中?

回答

0

Neon80s在iOS中不可用,正如我所見。但對於Arial,字體大小爲21,文字顏色爲red,則可以使用下面的代碼。

[self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIFont fontWithName:@"Arial" size:21],NSFontAttributeName,[UIColor redColor],NSForegroundColorAttributeName ,nil]]; 
+0

對不起氖是我添加的自定義字體。感謝這正是我所追求的 – burrGGG 2015-02-24 11:34:49