3
我使用外觀代理來定義我的應用,但是我遇到了[UIBarButtonItem外觀]的問題;我只想設置頂部UINavigationbar的按鈕樣式,但是當我運行下面的代碼時,同樣的樣式也會應用到鍵盤的完成按鈕。使用外觀代理僅定位頂部導航欄的條形按鈕
NSDictionary *btnAttributes = [NSDictionary dictionaryWithObjectsAndKeys:
[UIColor blackColor],
UITextAttributeTextColor,
[UIColor clearColor],
UITextAttributeTextShadowColor, nil];
[[UIBarButtonItem appearance] setTitleTextAttributes: btnAttributes
forState: UIControlStateNormal];
所以,我的問題是:是否有可能 - 使用外觀代理 - 樣式只有頂部導航欄的欄按鈕?
正是我一直在尋找,直到感謝! – jonik 2013-03-09 21:58:21
使用像'MPMoviePlayerController'這樣的類時要小心,因爲該野獸實際上使用了'UINavigationController'的子類,但不符合外觀。無論如何,很高興我可以幫忙。 – Till 2013-03-09 22:00:11