Last active
August 29, 2015 14:02
-
-
Save tonyarnold/6dc39048743d2eb4ee16 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Copyright (c) 2014 Tony Arnold & The CocoaBots. All rights reserved. | |
import Foundation | |
extension NSFileManager | |
{ | |
func applicationSupportDirectoryURL() -> NSURL? | |
{ | |
let directories = URLsForDirectory( | |
NSSearchPathDirectory.ApplicationSupportDirectory, | |
inDomains: NSSearchPathDomainMask.UserDomainMask) | |
if let directoryURL = directories[directories.endIndex - 1] as? NSURL | |
{ | |
return directoryURL | |
} | |
return nil | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Copyright (c) 2014 Tony Arnold & The CocoaBots. All rights reserved. | |
import XCTest | |
import SwiftlyCoreData | |
class NSFileManagerAdditions: XCTestCase | |
{ | |
func testApplicationSupportDirectoryURLWorks() | |
{ | |
let appSupport = NSFileManager.applicationSupportDirectoryURL() | |
XCTAssertNotNil(appSupport, message: "Should not be nil") | |
} | |
} |
Weird, I pasted all this into a "playground" and it worked for me...
Pasting this into a playground makes the playground stop working for me 😖
@tonyarnold this seemed to work for me (not in the playground tho)
extension NSFileManager
{
class func applicationSupportDirectoryURL() -> NSURL? {
return defaultManager().applicationSupportDirectoryURL()
}
func applicationSupportDirectoryURL() -> NSURL?
{
let directories = URLsForDirectory(
NSSearchPathDirectory.ApplicationSupportDirectory,
inDomains: .UserDomainMask)
return directories[directories.endIndex - 1] as? NSURL
}
}
edit: condensing code
Thanks @vascoorey — I get the errors above regardless of whether I declare/use a class function. I think it's a bug.
Damn that's weird indeed @tonyarnold !
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I get the following error: