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 m
UIView
, name it what you want (dimBackgroundUIView
) then set
the backgroundcolor as Black and set alpha to 0.1 or 0.2 or....[self.view addSubview:dimBackgroundUIView]; [self
addConstraintsForDimView];
if(dimBackgroundUIView) [dimBackgroundUIView
removeFromSuperview];
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.