1
CGContextRef context = UIGraphicsGetCurrentContext();
現在我想知道上下文的寬度/高度(以像素爲單位);任何方式來做到這一點?
CGContextRef context = UIGraphicsGetCurrentContext();
現在我想知道上下文的寬度/高度(以像素爲單位);任何方式來做到這一點?
你不能從CGContextRef
對象的信息,但是從周圍frame
對象:
self.frame.size.width
self.frame.size.height
這是不對的,你應該使用視圖的`bounds`。如果視圖被轉換,視圖的「框架」尺寸可能會更大。 – 2014-10-08 18:20:32