tags:

views:

985

answers:

2

Hello all,

In my app I am using celestial framework in order to control my volume application from the iPhone button volume.

Do you think I can be rejected by Apple ?

Thansk for your advice.

Thierry

+3  A: 

Yes you can and, probably, will.

August
agreed. This is easy for apple to find and they will probably reject it.
Roger Nolan
It's in a folder called "PrivateFrameworks", do you need a bigger hint than that?
Chris Lundie
A: 

Since Celestial is linked by UIKit, you can access the classes using objc_getClass even though you haven't linked to the framework directly. Still, there's a chance it could be rejected.

Example:

AVSystemController *avsc = [objc_getClass("AVSystemController") sharedAVSystemController];

See Wolf3dVolumePatch

rpetrich