2015-11-06 45 views
2

在蘋果開發類引用它說,有三種類型的模糊效果,你可以應用到UIVisualEffectsViewUIBlurEffect而無需額外的光「風格」

typedef enum { 
    UIBlurEffectStyleExtraLight, 
    UIBlurEffectStyleLight, 
    UIBlurEffectStyleDark 
} UIBlurEffectStyle; 

它說:

  • UIBlurEffectStyleLight

創建一個模糊在視圖中的效果。該視圖的區域是底層視圖的相同近似色調 。

適用於iOS 8.0或更高。

我試圖用UIBlurEffectStyleLight但很明顯,這種影響將白疊加到視圖至極,我不想......

What i get

What i want

這甚至可能與UIVisualEffectsView ?或者我必須使用完全不同的方法來添加模糊?

回答

0

UIVisualEffectsView確實不那麼靈活。 我認爲你在找什麼就像FXBlurView

相關問題