可可中的 UISlider
在 Cocoa 应用程序中,我添加了一个 UISlider。如果我运行程序而不添加任何代码,那么我可以左右拖动滑块。但是,如果我为其分配 IBOutlet,一旦触摸滑块,应用程序就会退出。这是为什么?
In a Cocoa app I added a UISlider. If I run the program without adding any code then I can drag the slider left and right. However, if I assign an IBOutlet to it, once I touch the slider, the application exits. Why is that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我解决了问题。如果我将应用程序设为基于 Window 的应用程序,那么我就不会遇到任何问题。如果我将应用程序设为基于视图的应用程序,就会出现问题。这是为什么?
Alright, I solved the problem. If I make the application a Window-based application, then I don't have any problems. If I make the application a View-based application, then the problem occurs. Why is that?