Pimpy

How to send your feature requirements for iPhone5 to Apple

Believe it or not there’s an easy way to contact Apple and let them know what you like or dislike about your iPhone. Further more you can send them feature requests – which then if required by a number of users might just make it into the next iPhone model.

Now this is not yer old fashioned direct phone line to the boss himself, *but* if I am to judge from my experience with the iPhone developer program folks – there’s indeed somebody on the other end who would read those emails, maybe not reply, but still sort them out and add +1 vote for your favorite feature request.

Send feedback to Apple about the iPhone

http://www.apple.com/feedback/iphone.html

But how about you want a new feature in the iPad? You probably already figured it out by yourself from the URL. Feedback to Apple about the iPad

http://www.apple.com/feedback/ipad.html

How about the iMac? (I have to tell them few things about it myself)

http://www.apple.com/feedback/imac.html

Hope today’s short article was/will be helpful

 
If you liked this article please share it with your friends or colleagues; there's also a low traffic RSS feed to give you heads up when there's a new post in Touch Code Magazine.

  1. [...] This post was mentioned on Twitter by Marin Todorov, Marin Todorov. Marin Todorov said: #touchcodemagazine: The application-identifier entitlement is not formatted correctly error http://bit.ly/brgFsU [...]


How to add a badge to the application icon

You’ve seen many times the Mail icon on your home screen featuring a red badge with the unread message you currently have in your Inbox. That’s really cool effect while you can effectively keep track of this number without having to start the app to check it. Now in your own app this number might be something else – unread RSS items, unanswered chat messages, or for example might be something totally different (not necessarily useful) – for example the days since your app was installed on the device – how about that?

Anyhow – putting the badge on the icon is really easy.

Put this number on that icon

Since iOS4 the UIApplication class has a property called applicationIconBadgeNumber. You can assign any integer to that property, although my test show that if you assign anything less than 1 (ie zero or negative integers) there just won’t be any badge on your icon. (NB: pay attention only iOS4 solution)

Here’s a short example code how to set the number on the badge:

[UIApplication sharedApplication].applicationIconBadgeNumber = 23;

Example app

You can download my example XCode project and play with it to check for yourself how the badges look like. The demo app will show you the current badge number with couple of buttons to increase and decrease that number. When you change the number, quit the app and have a look at the app icon- nice!

Download badge test project source code here

 
If you liked this article please share it with your friends or colleagues; there's also a low traffic RSS feed to give you heads up when there's a new post in Touch Code Magazine.


iPhone Game Kit

The iPhone Game Kit is a package of goodies put together by Nat Weiss. The idea behind the Kit is very simple – you don’t have experience in developing games or you are in the need to kick-start your game development and you need a boost to get you rolling. What you get in short [...]

UIView Category to manage the z-order of views

This is revamp of the article from February, but in an email John Muchow he pointed out a demo project will help a lot to make clear what the category does, so I included a demo project which can be downloaded from here. Any UIView can have a hierarchy of subviews. The subviews hierarchy defines [...]

AppStorm is a popular web site for reviewing iPhone apps and they do a fair job, and are one of these ones that don’t ask you money for having a review published, but rather ask the visitors to vote which app should they review. So please vote in the poll below if you want to [...]

Pimpy for iPhone is out now!

After many months of work finally Pimpy and Pimpy LITE are available today in the iTunes App Store! I can’t really sum up everything that happened since the development started in the end of January 2010, it took us some 6 and a half months to create concepts, design, develop, rewrite, switch from Facebook Rest [...]