Question
changing iOS device volume via adobe native extension
hello
I have created an ANE to control the ios device volume. When I exclude the following code, my ANE functions well, but when I include the code the and reproduce the ANE, I cannot compile the IPA.
UIWindow *win = [UIApplication sharedApplication].keyWindow;
MPVolumeView *volumeView = [[MPVolumeView alloc] initWithFrame: CGRectZero];
[win addSubview: volumeView];
volumeView.showsRouteButton = NO;
How could I make this code work with my ANE?
Thanks
