Wednesday, March 21, 2012

Sahasranama app for iPhone and iPad


Sahasranama app is intended for everyone.Read these slokas while in commute,at the work place,at home,in the temple or when you are in a religious group.You no longer have to carry a book wherever you go.You are always a 'touch' away from this powerful mantra.With the availability of audio for Sahasranama stotra,you can listen to the stotras and read through the text at the same time for a better experience.We have added Vishnu's different avatar images with this application.We have added more features like the PDF File of sloga,MP3 File and Ring tone File with this application to share with your friend and your relation circle.

Tuesday, March 13, 2012

ios 5.1 with xcode 4.2 for iOS development


To get Xcode 4.2 on Snow Leopard to run code on a device running 5.1 you can do this:
If you have another Mac running Lion + XCode 4.3.1 you can copy the files from:
"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/5.1 (9B176)"
to the equivalent place on your SL Mac: probably "/Developer/Platforms/iPhoneOS.platform/DeviceSupport"
and also copy 'version.plist' from the Lion machine in the iPhoneOS.platform folder to the SL machine.
Re-start XCode on the SL machine and re-connect the devices and it seems happy enough.
[If you don't have access to a machine with Lion+4.3.1 you can get the files out of the 4.3.1 DMG which can be downloaded from Apple here: http://adcdownload.apple.com/Developer_Tools/xcode_4.3.1_for_lion/xcode_4.3.1_for_lion.dmg
then mount the DMG, Show Package Contents on the XCode icon and drill down to
/Volumes/Xcode/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport to
find the files mentioned above.]

Thursday, February 9, 2012

The Music Player Framework in iPhone

Getting started: MPMusicPlayerController

You need to add MediaPlayer.framework to your target in Xcode and #import <MediaPlayer/MediaPlayer.h>. To control music playback, we use an instance of MPMusicPlayerController. There are two types of music players. The iPodMusicPlayer is a reference to the music player instance used by the iPod app. Any settings you change, such as the shuffle or repeat modes, will be changed in the iPod app, too. If the iPod is playing when your application starts, the music will continue playing and you can access the current song and skip back and forward through the currently active playlist. When your app quits, the music will continue playing. I imagine this mode is very handy for most utility apps that try to improve your music listening experience by interacting with the iPod.
.

Friday, February 3, 2012

Developing RESTFUL iOS Apps with RestKit

What is RestKit?

RestKit is an Objective-C framework for iOS that aims to make interacting with RESTful web services simple, fast, and fun. It combines a clean, simple HTTP request/response API with a powerful object mapping system that reduces the amount of code you need to write to ‘get stuff done’. RestKit’s primary goal is to allow the developer to think more in terms of their application’s data model and worry less about the details of sending requests, parsing responses, and building representations of remote resources.

Wednesday, February 1, 2012

iOS 5 : UIStepper Control

There is a new pre-built control in iOS 5 for incrementing or decrementing a value, UIStepper. The control has two buttons aligned horizontally, one labeled with a plus (+) the other a minus (-).
One nice feature is a continuous option, wherein if the user presses and holds down either +/- button, the stepper value is incremented repeatedly. The longer the button is held down, the faster the increment will occur. Also, you can have the increment value wrap around when a range of values is specified, for example, if you set min and max to 0 and 99 respectively, when the value reaches 99, the next value will be 0 (and vice-versa).

Below is a screenshot that shows the output of the example code below:

Show the UITableView textField cell above the Keyboard when typing

Scenario:
Keyboard
Keyboard

Friday, December 23, 2011

Monday, November 28, 2011

How to convert PDF files to ePub files to read on your iPad with iBooks

This tutorial will guide you through the process of converting PDF files so that they can be read in iBooks, the iPad application.


Update: you can now read PDF files directly in iBooks, without having to convert them to .epub or any other format. See this tutorial for a quick overview of how to add PDF files to iBooks to read on your iPad, iPhone or iPod Touch.
This tutorial will remain up just in case someone wants to create an .epub of their PDF.
iBooks uses an ebook format called ePub. Using a free converter application (and ebook manager) called calibre you can quickly convert PDF (and other file formats) to .epub files, which you can then transfer to your iPad for reading in iBooks. This tutorial will take you step by step through the entire process.

Monday, November 21, 2011

How to Create an Iphone App Layout in Photoshop


Step 1:Setting up the Workspace

Okay! First step is to set up the workspace.Open Photoshop (For your help, I`m using Adobe Photoshop CS5) and create a new canvas of 1300×950 px.
setting up the workspace How to Create an Iphone App Layout in Photoshop
The layout will be 840px wide.Now, draw 2 vertical guides at 230px and 1070px to delimit the layout,like in the image.

Tuesday, November 15, 2011

UINavigationController Customization Tutorial


Creating a UINavigationController programmatically

Creating a UINavigationController programmatically is trivial. Assuming that you’ve already created a class called RootViewController that subclasses UIViewController, you would use something like this, typically in your AppDelegate file:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    

// rootViewController can't be an instance of UITabBarController
// remember to include RootViewController in your class!
RootViewController * rootViewController = [[RootViewController alloc] initWithNibName:@"RootViewController" bundle:nil];

UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:rootViewController];

[self.window addSubview:navigationController.view];

// Don't bother releasing navigationController as it needs to be around all the time

   [self.window makeKeyAndVisible];

   return YES;
}

Wednesday, November 9, 2011

Xcode 4 : Select and Edit All Variables in Scope


The Jump Bar is the navigation area at the top of the source editor pane, which is highlighted in red in the figure below:


Xcode 4 : Select and Edit All Variables in Scope


Xcode offers a nice way to highlight all references of a variable within the current scope. First, make sure you have the setting shown below enabled within the Text Editing tab in the Xcode Preferences:

Get Started Guide for iOS using Phonegap


  • 1. Requirements

    • Intel-based computer with Mac OS X Snow Leopard (10.6)
    Necessary for Installing on Device:
    • An Apple iOS device (iPhone, iPad, iPod Touch)
    • iOS developer certification
  • 2. Install SDK + PhoneGap

    Download and install Xcode from Apple Developer Portal (Membership required)

    Download the latest copy of PhoneGap and extract its contents. Navigate to the iOS directory and run the installer until completion.
  • Thursday, November 3, 2011

    Read some interesting data from your iDevice with iOS 4.3



    Ever tried to read some interesting data like the Serial Number, IMEI, Phone Number… from your iPhone (or an other iDevice) ? Some data is easy to access, some other uses not supported API calls. I have written a simple App which can read the above mentioned data. You can download it here (click)

    Monday, October 17, 2011

    iPhone: Locating the serial number, IMEI, ICCID, or MEID


    Getting the information using your iPhone

    If you have access to your iPhone, here are some quick ways to obtain your iPhone serial number, International Mobile Equipment Identity (IMEI), ICCID, or Mobile Equipment Identfier (MEID).

    iPhone About screen

    You can find your iPhone serial number, IMEI, ICCID, or MEID in the About screen on your iPhone. From the Home screen, tap Settings > General > About and scroll down.

    Apple support and service


    Contacting Apple for support and service

    International Technical Support Numbers

    To expedite your call, please have your hardware serial number ready. Learn how to find your serial number.

    Monday, October 10, 2011

    60 QUOTES BY STEVE JOBS

    60 QUOTES BY STEVE JOBS



    “Sometimes when you innovate, you make mistakes. It is best to admit them quickly, and get on with improving your other innovations.”

    “Being the richest man in the cemetery doesn’t matter to me … Going to bed at night saying we’ve done something wonderful… that’s what matters to me.”

    Steve Jobs next to Adam,Newton With Apple





    Siri. Your wish is its command.

    Siri on iPhone 4S lets you use your voice to send messages, schedule meetings, place phone calls, and more. Ask Siri to do things just by talking the way you talk. Siri understands what you say, knows what you mean, and even talks back. Siri is so easy to use and does so much, you’ll keep finding more and more ways to use it.

    Reminders in iOS5




    Reminders

    A better way to do to-dos.

    Next time you think to yourself, “Don’t forget to...,” just pull out your iPhone, iPad, or iPod touch and jot it down. Reminders lets you organize your life in to-do lists — complete with due dates and locations. Say you need to remember to pick up milk during your next grocery trip. Since Reminders can be location based, you’ll get an alert as soon as you pull into the supermarket parking lot. Reminders also works with iCal, Outlook, and iCloud, so changes you make update automatically on all your devices and calendars.