- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的应用程序中,我使用的 View 层次结构如下:
UIView
----UIScrollView
--------TiledView (UIView subclass, uses CATiledLayer for drawing)
----OverlayView (UIView subclass)
简而言之 - TiledView
显示大平铺图像我还将自定义旋转应用于该 View :
tiledView.transform = CGAffineTransformMakeRotation(angle);
TiledView的绘制方法:
- (void)drawRect:(CGRect)rect {
// Drawing code
CGContextRef context = UIGraphicsGetCurrentContext();
...
NSString *fileName = [NSString stringWithFormat:@"tile_%d_%d.jpg", y + 1, x + 1];
UIImage *image = [UIImage imageNamed:fileName];
[image drawInRect:rect];
}
UIScrollView 允许滚动和缩放其内容。
Overlay View 位于 UIScrollView 之上,具有透明背景并执行一些自定义绘图。我使用单独的 View 来确保线宽和字体大小不受 ScrollView 中缩放比例的影响。
OverlayView的绘制方法:
- (void)drawRect:(CGRect)rect {
// Drawing code
[super drawRect:rect];
// Custom drawing code
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetRGBStrokeColor(context, 1.0, 1.0, 0, 1);
CGContextSetLineWidth(context, lineWidth);
CGContextBeginPath(context);
CGContextMoveToPoint(context, (int)startPoint.x,(int) startPoint.y);
if (usesMidPoint)
CGContextAddLineToPoint(context, (int)midPoint.x, (int)midPoint.y);
CGContextAddLineToPoint(context, endPoint.x, endPoint.y);
CGContextStrokePath(context);
}
最初一切正常,但在对 View 进行一些操作(例如来回滚动等)后,它在绘图函数之一的某些随机线上崩溃。作为示例应用程序在线崩溃:
CGContextSetRGBStrokeColor(context, 1.0, 1.0, 0, 1);
带堆栈:
#0 0x00503088 in CGColorEqualToColor
#1 0x00505430 in CGGStateSetStrokeColor
#2 0x005053b6 in setStrokeColorWithComponents
#3 0x0056150f in CGContextSetRGBStrokeColor
#4 0x000764ab in -[GADrawView drawRect:] at GADrawView.m:38
#5 0x016a7a78 in -[UIView(CALayerDelegate) drawLayer:inContext:]
#6 0x0077c007 in -[CALayer drawInContext:]
我是否缺少多个图形上下文之间所需的任何同步?或者可能有更好的方法来做我正在尝试的事情?
最佳答案
找到问题的解决方案。如 Apple technical note 中所述CATiledLayer
使用单独的线程来获取其图 block 的内容:
The CATiledLayer implements its drawing by using a background thread to fetch the contents of each tile, however the drawing functions provided by UIKit rely on a global context stack, and as such when a CATiledLayer starts rendering, using any of UIKit's drawing functions can result in a race condition.
因此,解决方案是将所有绘图代码从 -drawRect:
方法移至 -drawLayer:inContext:
并仅使用 Core Graphics 进行绘制功能。使用 CoreGraphics 绘图还需要在坐标系之间进行一些转换 - 这 post来自苹果论坛的人帮助了他们(请参阅drawLayer:
方法实现)。
所以 TiledView
的正确绘制代码:
- (void)drawRect:(CGRect)rect {
//Still need to have this method implemented even if its empty!
}
-(void)drawLayer:(CALayer*)layer inContext:(CGContextRef)ctx
{
// Do all your drawing here. Do not use UIGraphics to do any drawing, use Core Graphics instead.
// convert the CA coordinate system to the iPhone coordinate system
CGContextTranslateCTM(ctx, 0.0f, 0.0f);
CGContextScaleCTM(ctx, 1.0f, -1.0f);
CGRect box = CGContextGetClipBoundingBox(ctx);
// invert the Y-coord to translate between CA coords and iPhone coords
CGPoint pixelTopLeft = CGPointApplyAffineTransform(box.origin, CGAffineTransformMakeScale(1.0f, -1.0f));
NSString *tileUrlString = [self urlForPoint:pixelTopLeft];
UIImage *image = [UIImage imageNamed:tileUrlString];
CGContextDrawImage(ctx, box, [image CGImage]);
}
关于iphone - CATiledLayer绘图崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2295151/
我试图了解 CATiledLayer在使用 CGContextDrawPDFPage() 渲染 PDF 页面时有效. 我的理解是 drawLayer:inContext:每个图 block 和细节级别
有没有人有任何技巧可以提高 CATiledLayer 在视网膜显示器上的性能? 这篇文章: CATiledLayer in iPad retina simulator yields poor perf
我是 iOS 开发的新手,我正在尝试了解 CATiledLayer 的工作原理。不是如何使用它! CATiledLayer 有两个关键特性,我想知道它是如何工作的。 可见范围自动报告。 CATiled
请看这个简单的 CATiledLayer 示例 https://github.com/seanhess/CATiledLayer-Example 它由一个具有如下层次结构的 viewControlle
如您所知,CATiledLayer 用于通过以适合 View 大小的比例显示平铺图像来显示大图像。 我有 CATiledLayer 的工作方式类似于可以在 iOS 文档中找到的示例,我计算 drawR
我有一个适用于 iPad 的 pdf 阅读器应用程序,我在其中使用 ScrollView 来显示每个页面。我将页面保持在 View 中,并在页面的任一侧保持页面在 View 中。我有单独的纵向和横向
由于种种原因,我正在考虑自己实现CATiledLayer。我做了一些调查,但我似乎无法弄清楚 CATiledLayer 如何知道要提供哪个图 block 。例如,当您滚动图层时,setPosition
我有这个巨人UIView与约 600 UIButtons作为 subview 。 UIView大约是 2000 x 2000 像素,它是 UIScrollView 的 subview .我正在尝试实现
我正在按照 this answer 中概述的说明进行操作用 Core Graphics 中的图案填充图层。当图层是 CALayer 子类时,绘图工作正常。但是,当图层是 CATiledLayer 子类
我需要在 UIImageView 中加载更高分辨率的图像。经过各种方法之后,如果我们加载更高分辨率的图像,内存使用量就会变得巨大 [ width * height * 4 ]因此,为了克服这个问题,需
我正在尝试屏幕捕获使用 CATiledLayers(用于动画)的 View ,但无法获取我想要的图像。 我在 Apple 的“PhotoScroller”示例应用程序上进行了尝试,并添加了以下内容:
我有一个 CATiledLayer,我通过以下方法在其中渲染内容 - (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx 我使用
全部, 我无法从 CATiledLayer 获取我想要的行为。有没有一种方法可以触发图 block 重绘,而不会产生先将其区域清除为白色的副作用?我已经将 CATiledLayer 子类化以将 fad
关闭。这个问题需要debugging details .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 4年前关闭。 Improve this question 好吧
我将如何捕获 CATiledLayer 上的触摸事件? 我遇到以下情况,如果我将 View 层更改为 CATiledLayer, View 将停止捕获 TouchesXXX 事件。为什么会发生这种情况
我正在尝试在一个图层上添加两个子图层。一个图层应充当(快速渲染)背景,而另一图层(CATiledLayer)应显示其他内容。但是,CATiledLayer 不会出现在前面。普通的CALayer总是隐藏
每次您处于更深的缩放级别时,是否有一种方法可以重置您的缩放级别,以便您可以无限缩放? 我正在尝试创建一个 CATiledLayer,其中每个图 block 都有不同的颜色,当您放大一个图 block
我正在我的应用程序中创建一种“ map ”。这基本上只是使用 imageView/scrollView 查看图像。然而,图像是巨大的。像 20,000x15,000 像素之类的。如何平铺此图像以使其适
我的一个老问题与在 monotouch 中查看 pdf 文件有关(我设法完成了这个)。 Port of the iOS pdf viewer for xamarin 我的问题如下:如果我开始关闭和打开
其他人也遇到过这个问题,但我没有看到任何解决方案 - 请参阅 ( http://openradar.appspot.com/6941930)。 我有一个 UIScrollView,它的内容 View
我是一名优秀的程序员,十分优秀!