I'am planing to use a couple of large arrays in my project and like to store the arrays in a separate file. is this possible? here is my main viewcontroller example with the array "gruppe" I like to have in a separate file:
import UIKit
class ViewController: UIViewController {
var gruppe = ["new york", "sydney", "paris"]
@IBAction func knopf(sender: UIButton) {
println(gruppe[0])
}
}