在 NSTableView 中自动保存以编程方式创建的 NSTableColumn?
我在 Interface Builder 中创建了一个带有一些列的 NSTableView。我已将表格视图设置为自动保存其设置(我在属性检查器中设置了自动保存名称并检查了列信息)。现在我想以编程方式添加一些其他列,但是当我退出应用程序并重新启动它时,这些新添加的列会消失,而在 Interface Builder 中创建的列会重新出现。 谷歌搜索我找到了一个解决方法:更改添加列的宽度可以完成工作,但必须有更好的解决方案!
编辑:更改列宽有时仅有效。
I have an NSTableView
created in Interface Builder with some columns. I've set the tableview to autosave its settings (I set the autosave name in the Attributes Inspector and checked Column information). Now I want to add some other columns programmatically, but when I quit the app and relaunch it, these newly added columns disappear and the ones created in Interface Builder reappear.
Googling I found a work-around: changing the width of the added column gets the job done, but there must be a better solution!
EDIT: changing the column width only works sometimes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许您需要在应用程序/NSTableView 加载时加载自动保存数据?
Maybe you need to load the autosave data at the applications/NSTableView load?
NSTableColumn 的位置、大小和隐藏是自动保存的——使用 InterfaceBuilder 自动保存方法。确保点击“列信息”复选框...
the position, size and ishidden of a NSTableColumn is autosaved -- using the InterfaceBuilder autosave method. make sure to hit the 'Column Information' checkbox...