如何在UIWebView

时间:2015-05-28 06:40:06

标签: ios objective-c uiwebview rich-text-editor nsundomanager

我正在开发一个具有丰富文本编辑功能的应用。在ZSSRichTextEditor之上我编写了编辑器代码。这里我的编辑器是UIWebView,它将通过javascript代码注入,以支持/编辑富文本内容。

ZSSRichTextEditor具有撤消/重做功能但不符合我的要求。所以我开始自己实现撤销/重做功能。

在我完成UndoManager后,我发现实施撤销/重做不会让人头疼,因为Apple为我们提供了很多帮助。如果我们在适当的位置注册,那么UndoManager将处理所有其他事情。但在这里,我正在努力注册UndoManger如何/在哪里注册可编辑的UIWebView

UITextView中实施撤消/重做有很多示例,但我找不到任何可编辑的UIWebView

你能指导我吗?

1 个答案:

答案 0 :(得分:0)

首先,为历史创建两个属性,如下所示:

@property (nonatomic, strong) NSMutableArray *history;
@property (nonatomic) NSInteger currentIndex;

然后我要做的是使用子类ZSSRichTextEditor,以便在按下某个键或执行操作时获得委托调用。然后在每个委托电话中,您可以使用:

- (void)delegateMethod {
    //get the current html
    NSString *html = [self.editor getHTML];
    //we've added to the history
    self.currentIndex++;
    //add the html to the history
    [self.history insertObject:html atIndex:currentIndex];
    //remove any of the redos because we've created a new branch from our history
    self.history = [NSMutableArray arrayWithArray:[self.history subarrayWithRange:NSMakeRange(0, self.currentIndex + 1)]];
}

- (void)redo {
   //can't redo if there are no newer operations
   if (self.currentIndex >= self.history.count)
       return;
   //move forward one
   self.currentIndex++;
   [self.editor setHTML:[self.history objectAtIndex:self.currentIndex]];
}

- (void)undo {
   //can't undo if at the beginning of history
   if (self.currentIndex <= 0)
       return;
   //go back one
   self.currentIndex--;
   [self.editor setHTML:[self.history objectAtIndex:self.currentIndex]];
}

我还会使用某种FIFO(先进先出)方法来保持历史记录的大小小于20或30,这样你就不会在内存中拥有这些疯狂的长字符串。但这取决于你取决于内容在编辑器中的时长。希望这一切都有意义。