y0n3l / LGViewHUD

A HUD that mimics the iOS one.
32 stars 12 forks source link

Activity indicator glitch in LGViewHUD with CorePlot #2

Closed ghost closed 8 years ago

ghost commented 11 years ago

My app displays a graph rendered using CorePlot.The graph is inside a subview. When I'm loading the view an activity indicator appears,but somehow in the intersection area between it and the graph subview a strange glitch appears around the animated icon:

Screen Shot 2013-04-25 at 14 22 55

This is how I integrate the loader:

LGViewHUD* hud = [LGViewHUD defaultHUD]; hud.topText=@"Updating"; hud.bottomText=@"Please wait..."; hud.activityIndicatorOn=NO; [hud showInView:spinnerView]; [mainWindow addSubview:hud];

I've tried adding the activity indicator view to the main view instead to the local view,but still nothing. Does anybody know how to fix it?

StackOverflow link:http://stackoverflow.com/questions/15412752/activity-indicator-glitch-in-lgviewhud-with-coreplot