Nella mia app, ho fatto un controllo attraverso UIView
sottoclassi di semplici UIView. Tuttavia, se provo a fare lo stesso usando UIVisualEffectView
, non sono in grado di farlo.Come eseguire un taglio trasparente su UIVisualEffectView?
Ecco quello che sono in grado di fare con una normale UIView
:
Quando uso il UIVisualEffectView
al posto del verde UIView
, non riesco a vedere il vedere attraverso UIView, anche se vedere attraverso UIView
è aggiunto allo UIVisualEffectView
come subview
.
Codice:
- (void)drawRect:(CGRect)rect { //this is same for the UIVIew and for the UIVisualEffectView
[super drawRect:rect];
CGContextRef context = UIGraphicsGetCurrentContext();
// Clear any existing drawing on this view
// Remove this if the hole never changes on redraws of the UIView
CGContextClearRect(context, self.bounds);
// Create a path around the entire view
UIBezierPath *clipPath = [UIBezierPath bezierPathWithRect:self.bounds];
// Your transparent window. This is for reference, but set this either as a property of the class or some other way
CGRect transparentFrame;
// Add the transparent window
UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:transparentFrame cornerRadius:5.0f];
[clipPath appendPath:path];
// NOTE: If you want to add more holes, simply create another UIBezierPath and call [clipPath appendPath:anotherPath];
// This sets the algorithm used to determine what gets filled and what doesn't
clipPath.usesEvenOddFillRule = YES;
// Add the clipping to the graphics context
[clipPath addClip];
// set your color
UIColor *tintColor = [UIColor greenColor];
// (optional) set transparency alpha
CGContextSetAlpha(context, 0.7f);
// tell the color to be a fill color
[tintColor setFill];
// fill the path
[clipPath fill];
}
Domanda: perché questo non ha funzionato con UIVisualEffectView
?
Ciao Teja, potresti essere in grado di ottenere le funzionalità che hai menzionato in questo post. Se è così, puoi aiutarmi o suggerire qualche ritocco per il codice fornito nel seguente post. http://stackoverflow.com/questions/39165751/circle-masking-for-image-cropping-in-ios?noredirect=1#comment65676404_39165751 –
@sree_iphonedev farà una volta che sono davanti al computer! –
Hai risolto il problema alla fine? –