How can improve MPVolumeView performance?

948 Views Asked by At

i'm working on a iOS project, related with video streamming. One of the controls in the UI is a MPVolumeView. The problem is that when i slide the control for change volume, it seems to use to much CPU. And in fact, the UI becomes slow while i use the slider. How can improve the performance?, maybe i'm doing something wrong?

Reference image for CPU Load from Instruments. In the left only streaming, the peaks in the right were streaming+volume slide.

Reference image for CPU Load from Instruments. In the left only streaming, the peaks in the right were streaming+volume slide.

Thanks.

EDIT:

This is how i'm adding the control to a view:

MPVolumeView *mpVolume = [[MPVolumeView alloc] initWithFrame:CGRectMake(32,
                                                                        56,
                                                                        160,
                                                                        9)];
[self addSubview:mpVolume];
[mpVolume release];

"self" is a custom view, inherits from UIView, but i'm not using xib and drawRect. I'm just adding all the controls in the "initWithFrame:frame" method.

1

There are 1 best solutions below

2
On

Watch how many times init with frame is called. Sometimes I have seen it get called more than once, and sometimes often, depending on the situation. You probably want to only Alloc the volume view when the view is first set up. It sounds like it might be setting up the volume view again and again.

One potential is to make the volume view a class property (private or public)

 @property (nonatomic, retain) MPVolumeView *mpVolume;

Then of course... @synthesize mpVolume = _mpVolume

Then in initWithFrame just check and see if it's nil, and then alloc

 if(_mpVolume == nil){
      _mpVolume = [[MPVolumeView alloc] initWithFrame:CGRectMake(32,56,160,9)];
      [self addSubview:_mpVolume];
 }

Then release mpVolume in dealloc