问题
You've likely seen this before, its become exceedingly popular in consumery chic apps like ScoutMob. I'm trying to implement a 60% transparent view on launch that will cover my home screen, explaining how to use the functions of the home screen and disappears on tap.
I have my entire app completed (it's using .xib's since its from a years ago, but feel free to explain in storyboard format as well, since I will likely reuse this feature in other iOs 5.0+ applications.)
I have no problem making single views, but temporarily layering one on top of another is something I haven't figured out intuitively. I'll continue researching and include any helpful tips I find in case other people are trying to do the same thing.
回答1:
// get your window screen size
CGRect screenRect = [[UIScreen mainScreen] bounds];
//create a new view with the same size
UIView* coverView = [[UIView alloc] initWithFrame:screenRect];
// change the background color to black and the opacity to 0.6
coverView.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.6];
// add this new view to your main view
[self.view addSubview:coverView];
when you are done with it , you can remove it :
[coverView removeFromSuperview];
Swift3 version:
// get your window screen size
let screenRect = UIScreen.main.bounds
//create a new view with the same size
let coverView = UIView(frame: screenRect)
// change the background color to black and the opacity to 0.6
coverView.backgroundColor = UIColor.black.withAlphaComponent(0.6)
// add this new view to your main view
self.view.addSubview(coverView)
to remove it:
coverView.removeFromSuperview()
回答2:
This can be easily accomplished with a UITextView and a UIButton. Simply place the UITextView on the screen with the content you want to display, making it the full frame size of the screen, and change the background color to a black background with background alpha of .6
[UIColor colorWithRed: 0 withGreen: 0 withBlue: 0 withAlpha: .6];
Then place the button as a subview on top, making it the full frame of the screen, and setting it's alpha to 0. Set the action of the button to hide the textview and button.
Example:
UITextView* textview = [[UITextView alloc] initWithFrame:self.view.frame];
[textview setText: @"Text here"];
[textview setBackgroundColor: [UIColor colorWithRed: 0 withGreen: 0 withBlue: 0 withAlpha: .6]];
[textview setTextColor: [UIColor whiteColor]];
[self.view addSubview: textview];
UIButton* btn = [[UIButton alloc] initWithFrame:self.view.frame];
[btn setAlpha:0];
[btn addTarget:self action:@selector(method) forEvent:UIControlEventTouchUpInside];
[self.view addSubview: btn];
You may want to check the addTarget: method; I'm not sure those are the correct parameters off the top of my head.
回答3:
Just make a mechanism that figures out if it is the first launch of the app, then tells your main view controller to add a (probably image) view on top of the current view with 0.6 alpha
if (figureOutIfIsFirstLaunch)
{
UIImageView *myOverlay = [...];
myOverlay.frame = self.view.bounds;
myOverlay.alpha = 0.6;
[self.view addSubview:myOverlay];
}
回答4:
- create
UIView
, name it what you want (dimBackgroundUIView
) then set the backgroundcolor as Black and set alpha to 0.1 or 0.2 or.... - add these 2 lines of code when you need to dim the
background:
[self.view addSubview:dimBackgroundUIView]; [self addConstraintsForDimView];
- and add these 2 lines of code when you want to remove the dimming
background:
if(dimBackgroundUIView) [dimBackgroundUIView removeFromSuperview];
- do not forgot to add the constraints(layouts) for
dimBackgroundUIView
.
check this: iOS Dim background when a view is shown
and do not forget to read the note below the code to understand what you have to do.
回答5:
Swift 4 update
view.isOpaque = false
view.backgroundColor = UIColor.black.withAlphaComponent(0.2)
This option available in storyboard . Make sure to uncheck the Opaque option
来源:https://stackoverflow.com/questions/16283324/how-do-i-make-a-semi-transparent-view-layer-above-a-current-view