English 中文(简体)
将控件添加到 NSTextextView 并约束它们到字符( 范围) 中
原标题:Adding controls to NSTextView and binding them to (ranges of) characters

当编辑代码时, Xcode 是显示文本控件的斜体, 如下划按钮可以显示上下文菜单 s。 我见过其他 OS X 应用程序可以处理具有类似功能的文本。 见所附的样本 。

""https://i.sstatic.net/3L61Y.png" alt="此处输入图像描述"/"

我想这个效果是通过 NSTextAttachmentCell 获得的,虽然我不知道这是否是执行这一效果的适当方式。

对于我自己的应用程序,我也想使用这种技术。

我有以下几个问题:

  • NSTextAttachmentCell 是否是执行此特性的正确方法? 如果没有,会是什么?

  • 我如何将一个可与上述样本中的控件相比的控件附加到特定的文本范围,使其在NSTextView 中的位置是动态的,并跟随布局动作?

我发现 < a href=> "http://cocoadev.com/wiki/controls Mixed withTextHowTo" rel="notfollow noreferrer" > this 提供了一些提示,但不包含特定文本区域的附件 。

最佳回答

虽然 NSTextAttachmentCell 将有效,但有一个不利之处:单元格在文本中将变成一个非我所想要的格子。它扭曲文本的布局,是可选择的等等。 我希望在文本上画出单元格,就像 Xcode 中的行为一样。

挑战在于找到一种方法,将鼠标移动事件中的点转换为 NSTextView 内某个字符串的位置。

在进一步挖掘后,我在苹果演示应用程序中发现了一个小宝石,名为LayoutManagerDemo 。这个演示显示一个自定义的子类,即 NSTextView , 能够突出单个字符、单词和线条,而鼠标正在捕捉它的观点。从那里很容易在需要的 NSpoint 按钮中消失,然后显示一个带有一些选项的弹出菜单。

问题回答

暂无回答




相关问题
Taking picture with QTCaptureView

Is it possible to simply take a picture and save it somewhere using a QTCaptureView and Apple s built-in iSight? I ve seen lots of tutorials on recording video but none on simply taking a picture. Any ...

Controlling OSX windows

I m trying to control windows of a foreign OSX applications from my application. I d like to 1. move the windows on the screen 2. resize the windows on the screen 3. change the currently active window ...

objective-c: Calling a void function from another controller

i have a void, like -(void) doSomething in a specific controller. i can call it in this controller via [self doSomething], but i don t know how to call this void from another .m file. I want to call ...

NSUndoManager and runModalForWindow:

I have a simple Core Data app which displays a list of entities in the main window. To create or add new entities, I use a second modal window with a separate managed object context so changes can be ...

NSMutableArray values becoming "invalid"

I m trying to show a database information in a tableview and then the detailed information in a view my problem is as follow: I created a NSMutableArray: NSMutableArray *myArray = [[NSMutableArray ...

How to get a flash url in a webpage using a webframe?

As we know , When we load frame from webpage of safari, we will invoke the delegate methods of webkit informal protocol(WebFrameLoadDelegate): webView:didStartProvisionalLoadForFrame: webView:...

热门标签