Coming back to ASOC after a long while and finding my feet again.
I have an NSTableView.
It is linked by referencing in IB to a property in a script.
The script has been declared as a custom class in IB using the blue cube.
On awake from nib I get
on awakeFromNib()
log pAccountTable
end awakeFromNib
<NSTableView: 0x100623f90>
When I call another handler in the same script I get:
on loadDataArray:tRecordArray
set pDataArray to NSMutableArray's arrayWithArray:tRecordArray
pAccountTable's reloadData()
end loadDataArray:
*** +[AccountTableController loadDataArray:]: missing value doesn’t understand the “reloadData” message. (error -1708)
Why is pAccountTable now missing value.
Thanks for any help
Terry