سؤال

Objective C: I am working on an utility app and I want to check (from inside my app) if the iPhone's Software is up to date. Is that possible?

لا يوجد حل صحيح

نصائح أخرى

One way would be to keep track of the latest version yourself on a server somewhere, retrieve it with a network call, then compare it with the current version using the string at [[UIDevice currentDevice] systemVersion];

 NSLog(@"%@", [[UIDevice currentDevice] systemVersion]); // 7.0.3
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top