CATiledLayer:配置下一级细节的比例
CATiledLayer
创建用于显示带有图块的图像。因此,如果 tileSize
大于其当前位置,CATiledLayer
将显示下一个级别的详细信息。我如何控制这个过程并获得 MKTiledLayer 中的行为?
更新 问题是 -drawLayer:inContext:
调用下一级详细信息。我怎样才能阻止这个电话?
CATiledLayer
create for showing images with tiles. So if tileSize
is more then current place for it, CATiledLayer
show next level of detail. How can i control this process and get behavior as in MKTiledLayer?
UPDATE
Problem are that -drawLayer:inContext:
calls with next level of details. How can i prevent this calls?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现
CALayer
的-drawLayer:inContext:
方法,因为每当需要更多渲染数据时就会调用该方法:(来自
CALayer
的类参考。)Implement
CALayer
's-drawLayer:inContext:
method, as this will be called whenever it needs more rendering data:(From
CALayer
's class reference.)