我想addapt我的代碼到iOS 7UITextAttributeTextShadowOffset被棄用
[[UIBarButtonItem appearance] setTitleTextAttributes:@{
UITextAttributeTextColor: [UIColor colorWithRed:214.0f/255.0f green:210.0f/255.0f blue:197.0f/255.0f alpha:1.0f],
UITextAttributeTextShadowColor: [UIColor colorWithWhite:0.0f alpha:0.750f],
UITextAttributeTextShadowOffset: [NSValue valueWithCGSize:CGSizeMake(0.0f, 1.0f)]
我得到了一些錯誤,UITextAttributeColor is deprecated
,UITextAttributeTextShadowColor is deprecated
和UITextAttributeTextShadowOffset is deprecated
。
點擊這裏:HTTP://stackoverflow.com/questions/18968305/ios-7-only-app-crashes-at-startup – user2632844