import Cocoaclass AppDelegate: NSObject,NSApplicationDelegate { @IBOutlet var window: NSWindow @IBOutlet var textFIEld: NSTextVIEw @IBAction func displaySomeText(AnyObject) { textFIEld.insertText("A string...") } func applicationDIDFinishLaunching(aNotification: NSNotification?) { // Insert code here to initialize your application } func applicationWillTerminate(aNotification: NSNotification?) { // Insert code here to tear down your application }}
在界面构建器中,我有一个对象挂起来从一个按钮接收输入,然后输出到文本视图.当我点击按钮时,我正在尝试使文本视图填充一些文本.
我也尝试了一个文本字段,并没有得到错误,但有一个“东”错误的声音,它没有做任何其他的事情.在Objective-C中,您必须使用(assign)参数才能使其从我所理解的方面工作.
我究竟做错了什么?
使用@IBOutlet var scrollVIEw:NSScrollVIEw而不是@IBOutlet var textFIEld:NSTextVIEw.然后在scrollVIEw中创建一个返回documentVIEw的属性.
import Cocoaclass AppDelegate: NSObject,NSApplicationDelegate { @IBOutlet var window: NSWindow @IBOutlet var scrollVIEw: NSScrollVIEw var textFIEld: NSTextVIEw { get { return scrollVIEw.contentVIEw.documentVIEw as NSTextVIEw } } @IBAction func displaySomeText(AnyObject) { textFIEld.insertText("A string...") } func applicationDIDFinishLaunching(aNotification: NSNotification?) { // Insert code here to initialize your application } func applicationWillTerminate(aNotification: NSNotification?) { // Insert code here to tear down your application }}总结
以上是内存溢出为你收集整理的swift – 不能形成对类NSTextView的实例的弱引用全部内容,希望文章能够帮你解决swift – 不能形成对类NSTextView的实例的弱引用所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)