我正在使用一個非常簡單的UIActionSheet。以下代碼如下:如何從標籤欄顯示UIActionSheet半透明?
UIActionSheet *editActionSheet = [[UIActionSheet alloc] initWithTitle:@"What do you like to do?"
delegate:self
cancelButtonTitle:@"Cancel"
destructiveButtonTitle:@"Delete All Tasks"
otherButtonTitles:@"Arrange Task List", @"Mark All as Done", nil];
editActionSheet.actionSheetStyle = UIBarStyleBlackTranslucent;
[editActionSheet showFromTabBar:appDel.tabBarController.tabBar];
[editActionSheet release];
儘管我將動作片樣式設置爲半透明,但它總是顯得不透明。我不知道爲什麼?
謝謝
是否有一個特定的原因,你顯示的標籤欄的行動表? – 2011-04-19 23:49:47
實際上沒有。只是一個行動表,你更喜歡什麼? – 2011-04-20 07:31:13