white,pages,yellow,tracker,search,find,gps,mobile,411,ringtone,business,911,likes,follower,locator

UIDevice uniqueIdentifier property is deprecated – What now?

7 January, 2013 admin 10

I’m going to show you in this post how to write a workaround for this problem. Many of the existing Apps in the App Store are dependent on this property (uniqueIdentifier) for uniquely identifying a particular device… Apple stopped supporting a unique identifier for iOS (>=5.0). Solution 1: Instead of: [UIDevice uniqueIdentifier]; Use: [UIDevice uniqueDeviceIdentifier]; But wait… where does this property it come from? The following source code solves the problem. It generates a unique identifier based […]

How to make a music player inside an app featuring: Bora Bora App – Tahiti and her islands

26 July, 2012 admin 2

Wondering how to implement a music player inside an app? The interesting part of this short tutorial is the fact that our player also reacts and syncs when the user presses the volume control of his device. That is, we take the current “hardware volume” of his device and enable the user to manipulate the same volume inside the app, too, compatible for iPhone and iPad. Sounds easy, right? Here’s a screenshot showing what we’re going to […]