AppDelegate.m 296 B

123456789101112131415161718
  1. //
  2. // AppDelegate.m
  3. //
  4. // Created by Mohd Iftekhar Qurashi on 01/07/13.
  5. #import "AppDelegate.h"
  6. @implementation AppDelegate
  7. @synthesize window = _window;
  8. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
  9. {
  10. return YES;
  11. }
  12. @end