我正在尝试更改UIBarButtonItem中文本背后的阴影偏移量.
这是我的代码:
NSMutableDictionary *attributes = [NSMutableDictionary dictionary]; [attributes setValue:[UIColor colorWithWhite:0.30 alpha:1.0] forKey:UITextAttributeTextColor]; [attributes setValue:[UIColor whiteColor] forKey:UITextAttributeTextShadowColor]; [attributes setValue:[NSValue valueWithUIOffset:UIOffsetMake(0.0,0.0)] forKey:UITextAttributeTextShadowOffset]; [[UIBarButtonItem appearance] setTitleTextAttributes:attributes forState:UIControlStateNormal];
更改文本颜色有效.更改阴影颜色有效.更改阴影偏移似乎没有做任何事情.
我这样做的方式有问题吗?我也试过直接设置它,没有外观代理,但这也不起作用.
解决方法
我相信你的代码是正确的,虽然你可能期望与它的不同之处.如果我将其粘贴到测试应用程序并将偏移值更改为10.0,10.0,则阴影偏移对我来说是可见的. (iOS 5.0)