where is nsuserdefaults stored ?
One question arises in every IOS programmer , That whats the easy way to save some value without using any Database.Second questions is arise can i see the data i saved .where is nsuserdefaults stored ? Answer is “Yes” . The easiest way to…
UIGestureRecognizer Tutorial and Walkthrough
A gesture-recognizer object—or, simply, a gesture recognizer—decouples the logic for recognizing a sequence of touches (or other input) and acting on that recognition. When one of these objects recognizes a common gesture or, in some cases, a change in…
How to validate email on textField in IOS
validate email on textField: Something that every app developer has to deal with at some point or another is string validation, with the most common problem being email validation. That is because every single online service has a login or signup view…
How to Restore iPhone or iPad
How to Restore iPhone or iPad Although restoring iPad to factory settings may not sound ideal as it essentially wipes your iPad of any data and personal settings you have gathered over the years, it is occasionally necessary when your iPad is stuck in a…
How to move UP the UIVIEW when keyboard is display or typing in UITEXTFIELD in IOS !!!
UIVIEW when keyboard is display In my recent project i have faced a small problem when i have to provide data through UITEXTFIELD , but the problem is that after 4 UITEXTFIELD rest of the UITEXTFIELD’s are hide behind the keyboards, so the simple…
How to Create iCal event in IOS
Basically calendar control needs to keep informations in a managed way with dates. for that we need to integrate calendar controls in IOS programatically. There are lots of custom controls available in wan please take a look at this link Custom Calendar…
Major Features of IOS 8
Apple took the wraps off iOS 8 at its WWDC keynote.we are compiling some of the truly great new features that Apple introduced with iOS 8. Extensions One feature in Android that a lot of iOS users have been clamoring for was ability to apps to interact…
IOS -7.1 Features
IOS -7.1 Features This update contains improvements and bug fixes, including: • CarPlay ◦ iOS experience designed for the car ◦ Simply connect your iPhone to a CarPlay enabled…
Tips to Loading image from a URL to UIImage object
Tips to Loading image from a URL to UIImage object Load image pointed by URL, for example, http://mycodetips.com/images/image0.jpg, using NSURL, NSURLRequest, and NSURLConnection NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:…
Tips for Converting UIColor object to NSData
Tips for Converting UIColor object to NSData Converting a UIColor object, view.backgroundColor, to an NSData object /* 1. Archive into NSData object */ NSData *data = [NSKeyedArchiver archivedDataWithRootObject:view.backgroundColor]; [dict setObject:data…