我想爲陰影效果製作UIButton
[UIButtonInst titleLabel].shadowOffset = CGSizeMake(0, 1)
(//文字下面的陰影)爲正常狀態,而CGSizeMake(0, -1)
(//陰影在文字上)爲突出顯示的狀態。如何反轉UIButton的titleLabel shadowoffset處於突出狀態?
我閱讀了文檔UIButton
。看來[UIButtonInst titleLabel].shadowOffset
不能設置爲不同的狀態。有setBackgroundImage:forState
和setTitleColor:forState
,但沒有這樣的setTitleShadowOffset:forState
。
有沒有辦法做到這一點?