Prashant Rane
Prashant Rane

Reputation: 436

Will use of IOKit in my iOS app get my app rejected?

devs, as mentioned by Erica IOKit is a semi private framework; does anybody has any experience in using it in an app-store app? I want to use it to get IMEI and ICCID number.

Upvotes: 3

Views: 4986

Answers (2)

lxt
lxt

Reputation: 31304

If you call any non-documented Apple framework your app will be rejected. So it's very unlikely people have experience of using this framework in an app-store friendly app.

This process is entirely automatic, and happens immediately after you submit the binary. It's run through a number of checks to make sure you're not referencing or calling anything untoward.

Upvotes: 3

Jonathan Grynspan
Jonathan Grynspan

Reputation: 43472

Yes, it will. IOKit is not a public framework on iOS.

Upvotes: 1

Related Questions