In my objective c code I am using c and c++ libraries. Inside that there is a usleep(20); method used and I am keep on getting a warning “implicit declaration of function ‘usleep'”. Is it ok to keep this in the code? Can this code chunk can cause to app rejection in App Store?
Thank you.
That’s just a compiler warning. You can keep on using the call, just add this to the top of your code:
As far as App Store goes it’s perfectly safe.