MBHudDemoAppDelegate.m 492 B

1234567891011121314151617181920
  1. //
  2. // MBHudDemoAppDelegate.m
  3. // HudDemo
  4. //
  5. // Created by Matej Bukovinski on 2.4.09.
  6. // Copyright © 2009-2016 Matej Bukovinski. All rights reserved.
  7. //
  8. #import "MBHudDemoAppDelegate.h"
  9. #import "MBHudDemoViewController.h"
  10. @implementation MBHudDemoAppDelegate
  11. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  12. self.window.tintColor = [UIColor colorWithRed:.337f green:.57f blue:.731f alpha:1.f];
  13. return YES;
  14. }
  15. @end