如何在 Mac OS 上正确设置声明 IBOutlet 到 TextView
我要为 Mac 重新创建我的 iPhone 应用程序。我只有一个问题。这对你来说可能听起来很愚蠢,但我无法弄清楚。
当我想在 iOS 中调用 UITextView 的方法时,我只是这样做:
IBOutlet UITextView *myTextView;
and
@property (nonatomic, retain) UITextView *myTextView;
但我不知道如何在 Mac OS X 开发中为文本字段执行此操作。
有人可以帮我解决这个问题吗?
谢谢!
I'm going to recreate my iPhone app for the mac. There is only one problem I'm having. This may sound stupid to you but I can't figure it out.
When I want to call a method for the UITextView in iOS i just did like this:
IBOutlet UITextView *myTextView;
and
@property (nonatomic, retain) UITextView *myTextView;
But I can't figure out how to do it for a textfield in Mac OS X developing.
Could someone help me with this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UITextView
的功能等效项(还有一些...)是NSTextView
。IBOutlets
不会被保留!所以你的界面应该变成
UITextView
in AppKit isNSTextView
.IBOutlets
are not retained!So your interface should become