Posts

Showing posts from July, 2012

Links

Image
=========================================================== https://developer.apple.com/videos/ =========================================================== Extract frames from movies on iPhone http://www.codza.com/extracting-frames-from-movies-on-iphone =========================================================== Animation(Rotate View) http://mobile.tutsplus.com/tutorials/iphone/ios-sdk-quick-tip-animations/ =========================================================== Sqlite Tutorial http://www.icodeblog.com/2008/08/19/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-1/ =========================================================== iAd http://xcodenoobies.blogspot.in/2011/01/how-to-integrate-iad-for-os32-and-admob.html =========================================================== Recording and playing back audio https://developer.apple.com/library/ios/#samplecode/SpeakHere/Introduction/Intro.html ==============================

Slider

http://davidbcalhoun.com/2011/implementing-iphone-slider-unlock-with-input-type-range

Face Recognizayion

Best Tutorial 1   www.programmingiphonesensors.com/ 2   http://maniacdev.com/ App like this polarbearfarm.com Face detector Eye,Mouth detector API http://developers.face.com/tools/#faces/detect  

Push Notification

Image
Push Notifications In iOS, apps can’t do a lot in the background. Apps are only allowed to do limited set of activities so battery life is conserved. But what if something interesting happens and you wish to let the user know about this, even if they’re not currently using your app? For example, maybe the user received a new tweet, their favorite team won the game, or their dinner is ready. Since the app isn’t currently running, it cannot check for these events. Luckily, Apple has provided a solution to this. Instead of your app continuously checking for events or doing work in the background, you can write a server-side component to do this instead. And when an event of interest occurs, the server-side component can send the app a push notification! There are three things a push notification can do: Display a short text message Play a brief sound Set a number in a badge on the app’s icon Getting push to work for your app takes quite a bit of effort. This is a pu