Categories
Friends
Links
Category Archives: iPhone Xcode – Objective C
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 Flip View, Flipping view, Iphone, Objective C, SDK, Xcode 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 Cocoa, Duplicate iPhone, Objective C, Rename iPhone Project, Xcode 4 Comments
Alert Box on iPhone – Xcode