RaOne iphone app

Now, Raone is available on your iphone and ipad.Once again the greate film Ra-One of Shah rukh khan will releasing on 26th October 2011.you can download the free RaOne iphone app from here Descriptions and features available in itunes are Description Ra.One | Genesis is a free to play top down 3D arcade action game, available for Smartphones & Online. You play as the mighty superhero 'G.One' who will stand to defend the world, against the wrath of a surreal creation, codename 'Ra.One' and his minions, who are all set to bring chaos and destruction. **The game exclusively supports iPod's - 4th generation iPhone 3GS ,...

Best iphone development books

iphone become very  popular since it launched in 2007. It continues to be the leading mobile device today with millions of applications in the App Store.If you want to develop the iphone applications you must start from the beginning. There are lots of books available in the market.For the quick iphone and ipad application development Here is the best books for the iphone development 1. Beginning iPhone Development: Exploring the iPhone SDK This is the best iphone development book for the beginners As, its start with the basic process of downloading the SDK for the iphone and ipad development.It start with the basic program and explains the interface and various controls available in the iphone development 2. iPhone Programming – The Big Nerd Ranch Guide This book explains you...

How to take the screenshot in iphone Simulator

Run your project in menu bar got to file > Save Screenshot or Run your project and press “ Command + S “ please refer the screenshot below screenshot in iphone simulat...

Add image and text on button programmatically

Many times we have the requirements to add the button programmatically as well as to the text on that button when we set the image on the button then text will be not visible.so, in that case write the following codestart code and new project view based application or singleview applicationthen inlace of the viewDidLoad method write the following code then run the applicationyou will find the button with the image and with the text just click on the butto.-(void)ButtonClicked{ UIWebView *wv = [[UIWebView alloc] initWithFrame:CGRectMake(0, 50, 320, 410)]; [wv loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://development-iphone-app.blogspot.com/"]]]; [self.view addSubview:wv];}- (void)viewDidLoad{ UIButton *Btn = [UIButton buttonWithType:UIButtonTypeCustom];...

Apple - Introducing Siri on iPhone 4S

Iphone 4s Siri the aladdin chiragHow siri works and looks Siri on iPhone 4S lets you utilize your tone of voice to send command, schedule meetings, place phone calls, and employ your wish like aladdin chirag. Request Siri to do things just by talking the way you talk. Siri understands what you say, knows what you mean, and even reply back. Siri is so simple to use and does so much, you’ll keep finding more and more ways to use it.Talk to Siri as you would to a person. Say something like “Tell my mother I will come late.” “Remind me to wake up early in the morning.” “Any yoga class is around here?” Siri understand what you say, finds the information...

UITableView Example

UITableView is the basic list view available in iphone development, with the help of [uitableview] we can list out the values in the single column an in multiple row format. uitableview is the useful in the many of the iphone development. uitableview is ver easy to implement in the xcode. Here is the example to implement the uitableview for the beginners  Step 1.   Open xcode create new project and add the UITableView control in you view controller. Just drag drop the uitableview view in view. And then set the delegate for the delegate with the file’s owner.refer the below image Step 2. Write the following code in your...

Xcode 4.2 is now available with greate changes

Xcode 4.2 adds support for many facial appearance that are available in iOS 5.0. • The LLVM compiler supports Automatic Reference Counting (ARC), and Xcode includes a menu item to convert targets to use ARC• The Interface Builder user interface provides support for creating storyboard files for your iOS applications• In iOS Simulator, you can now simulate different locations for applications using the Core Location framework.• You can download your application data from an iOS device and automatically bring back that data when debugging or testing in iOS simulator or on a devi...

How the Xcode 4.2 looks

Hi,All Xcode 4.2 is now released by Apple which include ios 5.0 the worlds most advance mobile operating system. Apple incudes very classic features in the Xcode 4.2 and many basic changes Here is one image for how many types of Application There is changes in types of Application 1. Master Detail Application     This template provides a starting point for a master-detail application. It provides a user interface              configured with a navigation controller to display a list of items and also a split view on iPad.2.OpenGL    This template provides a starting point for an...

Passing values between two UIViewControllers

Hi,Welcome again There are some times requirement in iphone development i.e. How to pass values between two view controllers Here is the code in xcode Root class code is here @interface FirstRootViewController : UIViewController{} @implementation FirstRootViewControllerin Any button click event write the following code SecoViewController *cn = [[SecoViewController alloc] initWithNibName:@"SecoViewController" bundle:nil]; cn.SecondControllerString = @"Your value";[self.navigationController pushViewController:cn animated:YES]; [cn release]; @end @implementation SecoViewController-(void)viewDidLoad{          NSLog("%@", SecondControllerString);}@e...

iphone 4s

Iphone 4s is released on Friday, Oct. 14, 2011. It's the hottest and greatest iPhone, with Dual-core A5 chip. 8MP camera and optics. iOS 5 and iCloud. And introducing Siri. It’s the most miraculous iPhone yet.But for some people, it's a significant event because the 4S is the first brand-new iPhone to be released on any wireless carriers other than AT&T. People can also utilize it on Verizon and Sprint. Technical Specifications of iphone 4S• Height: 4.5 inches (115.2 mm)• Width: 2.31 inches (58.6 mm)• Depth: 0.37 inch (9.3 mm)• Weight: 4.9 ounces (140 grams)• Retina display• 960-by-640-pixel resolution at 326 ppi• Fingerprint-resistant...

example for the NSMutableDictionary in iphone development

Here is the code how to set the value in the NSMutableDictionary NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];[dict setObject:@"007" forKey:@"Id"]; [dict setObject:@"Steve Job" forKey:@"name"]; [dict setObject:@"http://development-iphone-app.blogspot.com/" forKey:@"blog"];  NSLog(@"%@", dict);please follow the code to retrive the value from the NSMutableDictionaryNSString *Name = [dict valueForKey:@"name"];you will get the vale for the Name is Steve Job ...

Print the log in iphone development

Here is the code for how to print the log in the iphone development Simply you have just write the NSLog(@"%@",Any variabl...

iphone application development tutorial for beginners

So you've got a Mac, you've got an iPhone, and you actually want to start develop some apps. There's plenty of documentation available, but the greatest way to learn a new language and framework is to basically dive right in. All of the documentation and tutorials I ran across when learning to program the iPhone depended a small too much on Interface Builder, which mostly sticks a layer of magic between me and what I want to do. Frankly, I like to begin at the base and work my way up, which is why this tutorial is going to show you how to develop  a basic 'Hello World' application. Here are the simple steps to develop the simple...

Read Write value from plist file in iphone

Here is the method how to read or write in plist file in iphone development -(void)writeToPlist:(NSString *)User_Id{    NSString* path = [[NSBundle mainBundle] pathForResource:@"data" ofType:@"plist"];    NSMutableDictionary *UserData = [[NSMutableDictionary alloc] initWithContentsOfFile:path];    [UserData setObject:User_Id forKey:@"CustomerId"];    [UserData writeToFile:path atomically:YES];    [UserData release];}-(NSString *)ReadFromPlist{    NSString* path = [[NSBundle mainBundle] pathForResource:@"data" ofType:@"plist"];    NSMutableDictionary *UserData = [[NSMutableDictionary alloc] initWithContentsOfFile:path];    return [UserData valueForKey:@"CustomerId"];    [UserData release...

Apple's iOS take over great market share

Apple's iOS and Android have been battling for the hearts and minds of mobile users. But which one is on best of the other seems to differ from report to report. including all of its mobile devices, Apple holds the lead over Android on InMobi's ad network with 29 percent of all ad parody. But since January, Millennial Media has sited Android in front of iOS with a larger share of ad impressions tracked on its mobile ad network. Looking at the second quarter, Android was consecutively on 52 percent of all smartphones, says NPD Group, while iOS was found on 29 percent. The results can vary depending on which devices are tracked. Looking austerely at smartphones, Android classically pops up in the lead. But by including tablets in the mix, iOS sometimes turns up as the top dog. document.getE...

Which Tablet you should buy

Hey,I am using the table and ipad since last 2 years I most like the ipadbut there are also other Tablets are available  1. Ipad 2 is the Apple product great experience to have it 2. Xoom is manufacture by Motorola with Android 3.0 with 10.1 inch display 3. Galaxy Tab is the Samsung product there are various tablet available in the market manufacture by Samsung with Android os 4. TouchPad  is manufacture by HP with the great HP webOS 3.0 5. BlackBerry PlayBook is the product of RIM comes with the RIM BlackBerry Tablet OS Android and the iOS are the most popular os in the worldSo, Please Refer this chart before buying the Tablet&nb...

Latest News about the iphone 5

There are some rumor about iPhone 5 as well – equally good and bad. I’ll start with some wanton one- it’s said that the initiate of so much expected iDevice is belated till October… Who knows, actually…As for positive news- the rumors leaked that the screen of iPhone 5 will be bigger, and the device will be thinner than iPhone4. The “thin iPhone” rumors point to a warped back design for the device, which seems somewhat implausible, given that Apple has switched from such a design to a rectangular, flat back in iPhone ...

APPLE WILL INSTIGATE IPAD HD AS AN ALTERNATIVE OF IPAD3

According to the most recent rumor about the launch of Ipad3, apple will launch ipad HD as an alternative of Ipad3 and it will be happening in the fall. This will be a new entry in the ipad series. The ipad HD, which should not be confused with the ipad 3, it will come with a twice resolution screen (2048 x 1536), and be targeted toward a specific high end market. Well, according to the reports the idea would be to create a “Pro” version, like the MacBook Pro vs. the MacBook. At the similar time, the company will apparently release a version of Final Cut or some other type of video / photo manufacture a...

Apple To Definitely Announce iPhone5 In October

Apple‘s fresh CEO, Tim Cook, will hold a enormous media event Oct. 4 to disclose the iPhone 5, All Things Digital bang mentioning sources “memorable with the subject”.If accurate, the presentation date of the next generation iPhone is solid with the recent wave of gossip demanding it will be released early in October.According to the report, the sources claim that Cook will lead over the statement — with the help of other key executive such as Phil Schiller, who contributed in such events previously as well — which would give this event even more significance. Cook must convince the shareholders, the viewers and Apple fans all over the world that he can sure-handedly take over the role of Apple CEO and company showman. This will be his first keynote as the CEO and the expectations...

Database connectivity in iphone Application

Hi,Find here the code how to connect the sqlite database in iphone Application There are requirement to connect the Database an store the local data Sqlite is the option for the iphone App database,Here is the steps // Write and call this method in your delegate file- (void) copyDatabaseIfNeeded { //Using NSFileManager we can perform many file system operations. NSFileManager *fileManager = [NSFileManager defaultManager]; NSError *error; NSString *dbPath = [self getDBPath]; BOOL success = [fileManager fileExistsAtPath:dbPath];  if(!success) { NSString *defaultDBPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"Database.sqlite"]; success = [fileManager copyItemAtPath:defaultDBPath toPath:dbPath error:&error]; if (!success)  NSAssert1(0,...

Pages 281234 »
Powered by Blogger.
Twitter Delicious Facebook Digg Stumbleupon Favorites More