2012-10-29 44 views
-1

我想知道是否有人知道ipad上的接觸點可以如何靠近。 Appmates(http://www.appmatestoys.com/)等產品可創建電容式標記,但您可以走多遠/您可以創建多少複雜標記?ipad觸摸點有多準確?

此外,我已閱讀總體有10,有沒有辦法解決這一限制?

+0

取決於用戶手指的寬度有多少像素:) –

+0

iPad可以識別1點觸控。問題是用戶能夠用他們的手指來準確。 – shannoga

+0

不是用手指,而是用一些手寫筆。 –

回答

0
//this code used to find touch point in screen 

-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{ 

    UITouch *myTouch = [touches anyObject]; 
    point = [myTouch locationInView:self.view]; 
    NSLog(@"%f,%f",point.x, point.y); 


}