我正在通过覆盖更改插入点大小-(void)drawInsertionPointInRect:(NSRect)aRect color:(NSColor *)aColor turnedOn:(BOOL)flag
,但它不处理第一次闪烁(当您移动插入点时,它会恢复正常)
我设法通过覆盖私有方法来处理第一次眨眼- (void)_drawInsertionPointInRect:(NSRect)aRect color:(NSColor *)aColor
。
但这对我来说不是解决方案,因为覆盖私有方法将导致被 App Store 拒绝。我希望该应用程序出现在 App Store 中。我看到像 iAWriter 和 Writeroom 这样的应用程序有一个自定义插入点,它们在 App Store 中。
有谁知道他们是如何做到这一点的,或者是一种更好的方法而不是覆盖私有方法?
谢谢。
- (void)_drawInsertionPointInRect:(NSRect)aRect color:(NSColor *)aColor
{
aRect.size.width = 3.0;
[aColor set];
[NSBezierPath fillRect:aRect];
}
- (void)drawInsertionPointInRect:(NSRect)aRect color:(NSColor *)aColor turnedOn:(BOOL)flag
{
if(flag) {
aRect.size.width = 3.0;
[aColor set];
[NSBezierPath fillRect:aRect];
}
else {
[self setNeedsDisplayInRect:[self visibleRect] avoidAdditionalLayout:NO];
}
}