Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些图像,我想使用它们来绘制它们drawAtPoint(我正在使用一个包含 100 个单元格的表格并按照建议进行绘制以加快滚动速度)。现在,这些图像是随机的(它们的大小可以是任何东西......),我需要指定我想要适应的尺寸。
drawAtPoint
谁能告诉我该怎么做?
谢谢。
假设我了解您想要做什么使用:
- (void)drawInRect:(CGRect)rect;
请参阅http://developer.apple.com/library/ios/#documentation/uikit/reference/UIImage_Class/Reference/Reference.html
使用 drawAtPoint 时,您无法指定尺寸,它将在当前图形上下文中绘制整个图像。