-2
我想在iphone中的核心圖形中繪製一條線。我使用Quartz進行繪製。我想解決這條線的起點。如何做到這一點?使用石英在圖紙中如何固定線的起點?
我想在iphone中的核心圖形中繪製一條線。我使用Quartz進行繪製。我想解決這條線的起點。如何做到這一點?使用石英在圖紙中如何固定線的起點?
要畫一條線只檢查這個How do I draw a line on the iPhone?
,並檢測觸摸並將其轉換爲點做以下.....
- (void) touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event
{
// Retrieve the touch point
UITouch *touch=[[event allTouches]anyObject];
CGPoint point= [touch locationInView:touch.view];
}
在CoreGraphics中查找CGContextMoveToPoint。
感謝您的幫助 – vipul