Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to make app settings using plist like the Twitter app settings and have my app name's status appear as "Installed" like done in Twitter.

share|improve this question
Here is the answer given by A-Live read his comments. thanks stackoverflow.com/questions/12493405/… – Aadil Ali Sep 20 '12 at 18:04

3 Answers

You need to create a settings bundle for your application. These 2 links should assist you in doing that.

Implementing an iOS Settings Bundle http://www.iphonesdkarticles.com/2008/08/application-preferences.html Application Preferences http://www.iphonesdkarticles.com/2008/08/application-preferences.html

share|improve this answer

If I understand correctly, you want your app in the twitter setting of settings app. Well I sorry to tell you that that is not possible.

The twitter setting in the settings is build by apple to only detect the official twitter app.

If you just want you app under the settings app the read this: Implementing an iOS Settings Bundle

share|improve this answer
No i dont want my app to appear in twitter app settings. but want my app to look like twitter app settings. hope you get my point.?? – Aadil Ali Sep 19 '12 at 11:53
No I don't understand, there is only one option to get you app under the settings app and that is adding the settings.bundle. Which wil only allow you to add standard element which you can't not style (except adding images to the sliders) – rckoenes Sep 19 '12 at 11:56
i have done other functionality as in twitter but just one thing remains. if you have seen twitter app settings, on the first inner page it shows twitter logo, and installed as status. so when i install my app should appear like twitter's. – Aadil Ali Sep 19 '12 at 11:56

Twitter is able to do that because Apple has included it as part of the OS core functionality. In other words, if Twitter is not installed then the Twitter settings are still available because Twitter can be used even with the app.

You can't do this with your app because if the app isn't installed then the settings won't appear anyway. Your settings will only show if the app is installed so saying 'installed' is redundant and unnecessary.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.