Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. import UIKit
  2.  
  3. @UIApplicationMain
  4. class AppDelegate: UIResponder, UIApplicationDelegate {
  5.  
  6. var window: UIWindow?
  7.  
  8. func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
  9. // Override point for customization after application launch.
  10. #if DEBUG
  11. #if (arch(i386) || arch(x86_64)) && os(iOS)
  12. {
  13. if let docDir = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true).first {
  14. Log("Documents directory : \n[ \(docDir) ]")
  15. }
  16. }()
  17. #endif
  18. #endif
  19. return true
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement