Category Archives: iPhone Xcode – Objective C

Alert Box on iPhone – Xcode

Example:   UIAlertView *someError = [[UIAlertView alloc] initWithTitle: @"Network error" message: @"Error sending your info to the server" delegate: self cancelButtonTitle: @"Ok" otherButtonTitles: nil];   [someError show]; [someError release];  
Also posted in iPhone Xcode - Objective C | Tagged , , , | 10 Comments

How to Flipping a View on iPhone SDK

Objective C   - (void) flipView {         [UIView beginAnimations:nil context:NULL];         [UIView setAnimationDuration:kTransitionDuration];                         [UIView setAnimationTransition:([mainView superview] ?                                 UIViewAnimationTransitionFlipFromLeft : UIViewAnimationTransitionFlipFromRight) [...]
Also posted in iPhone Xcode - Objective C | Tagged , , , , , | 1 Comment

How to Rename /Duplicate iPhone Project in Xcode 3.x

Rename iPhone Project Step by Step:   1. Copy/rename the folder into new name. 2. Get inside the new folder and rename the .pch and .xcodeproj files. 3. Delete the build folder. 4. Open .xcodeproj file in text editor, like TextMate or TextWrangler. That’s actually a folder, which contains 4 files (you can also right-click [...]
Also posted in iPhone Xcode - Objective C | Tagged , , , , | 4 Comments