Check for an active Internet Connection on iPhone SDK !!!
Internet Connection on iPhone METHOD 1: Use a simple (ARC and GCD compatible) class to do it 1) Add SystemConfiguration framework to the project but don’t worry about including it anywhere 2) Add Tony Million’s version of Reachability.h and…
How to use NSTIMER in IOS Programatically ?
////sample.h #import <UIKit/UIKit.h> @interface sample : UIViewController { NSTimer *timer_time_taken; } @property (nonatomic, retain) NSTimer *timer_time_taken; @end ///sample.m #import “sample.h” @implementation sample –…