I'm doing a simple test program using bindings in Swift on OSX. Having an NSTableView, NSArrayController and a model class I try to hook them up together, but without success! The build compiles but gives instantly this error: Thread 1: EXC_BAD_ACCESS(code=1, address = 0x0)
Code looks like this:
model class:
import Foundation
class Name {
var firstName = "Brook"
var lastName = "Brooklyn"
}
view controller:
import Cocoa
class ViewController: NSViewController {
dynamic var names = [Name]() // serves as the content for Array-Controller
override func viewDidLoad() {
super.viewDidLoad()
// populate array
var name1 = Name()
var name2 = Name()
names.append(name1)
names.append(name2)
}
override var representedObject: AnyObject? {
didSet {
// Update the view, if already loaded.
}
}
}
I've setup the array controller to use my class "Name" and added the keys "firstName" and "lastName"
Here's the storyboard:
Has anyone already had any success setting up bindings on Xcode 6 Beta 5? Any help is appreciated!
Thanks!
EDIT:
As suggested I tried adding the "dynamic" keyword to the property to enable bindings, but it gives the same error and doesn't work.
I've also tried subclassing the "Name" class from NSObject in order to use the old Objective-C support from Cocoa, but bindings still don't work!
Beta 5 requires you to explicitly set your properties as
dynamic
in order for KVO/bindings to work:See the Dynamic declaration modifier section of the release notes for more information.