2012-05-16 49 views
0

我想知道如何使UIToolbar看起來像透明的照片應用程序,它允許下面的照片被看到。我有我的UIToolbar放置在IB。在IB中,我將tintColor和backgroundColor都設置爲ClearColor。UIToolbar半透明像照片應用程序

在代碼中,我也做:

_webViewToolbar.translucent = YES; 
_webViewToolbar.alpha = 0.5; 

不幸的是,它只是看起來像這樣:

enter image description here

有什麼想法?謝謝!

回答

0

檢查下面的代碼行

_toolbar.barStyle = UIBarStyleBlackTranslucent;//Deprecated 

編輯

_toolbar.barStyle = UIBarStyleBlack; 
    _toolbar.translucent = YES; 

檢查UIInterface.h類中UIKit.Framework

你會發現follwing

// for UINavigationBar and UIToolBar 

typedef enum { 
UIBarStyleDefault   = 0, 
UIBarStyleBlack   = 1, 

UIBarStyleBlackOpaque  = 1, // Deprecated. Use UIBarStyleBlack 
UIBarStyleBlackTranslucent = 2, // Deprecated. Use UIBarStyleBlack and set the translucent property to YES 
} UIBarStyle; 

Regards, neil。