0
我創建了一個透明模態視圖,它工作正常。我想要的是使過渡到採取當模態視圖appears..below是代碼的地方褪色..模態視圖中的淡出過渡
UIView *modalView = [[[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
modalView.opaque = NO;
modalView.backgroundColor = [[UIColor blackColor]colorWithAlphaComponent:0.9];
UILabel *label1 = [[[UILabel alloc] init] autorelease];
label1.text = @"Modal View";
label1.textColor = [UIColor whiteColor];
label1.backgroundColor = [UIColor clearColor];
label1.opaque = NO;
[label1 sizeToFit];
[modalView addSubview:label1];
[self.view addSubview:modalView];
我得到錯誤「self.alpha」是不是結構或工會 – kingston
對不起。我犯了錯。現在查看我更新的答案。 – EmptyStack
感謝那個工作的人.... – kingston