2011-12-23 53 views
2

首先,這段代碼工作正常,它正是我所需要的,但是在審查之後,我錯過了一些東西。在屏幕上移動UIView,爲什麼這個工作?

我們有一張卡。當被觸摸時,卡片移動。在某個位置時,它會到達那個位置。

-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { 
    ... 
    // Take note of the starting position and current position, both the same 
    startTouchPoint = pt; 
    currentTouchPoint = pt; 
    ...  
} 

-(void) touchesMoved:(NSSet *) touches withEvent:(UIEvent *)event { 
    ... 
    // As touch moves around the screen, current touch point is 
    // updated with it's new location 
    currentTouchPoint = [first locationInView:self]; 
    ... 
} 

-(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { 
    ... 
    // If something happens, put card in a given location 
    cardCurrentlyBeingTouched.xPosition = 300; 
    cardCurrentlyBeingTouched.yPosition = 150; 
    ... 
} 

-(void) drawRect:(CGRect)rect { 
    ... 
    // Card moving around the screen 
    cardCurrentlyBeingTouched.xPosition += (self.currentTouchPoint.x - startTouchPoint.x); 
    cardCurrentlyBeingTouched.yPosition += (self.currentTouchPoint.y - startTouchPoint.y); 

    CGPoint moveToLoc = CGPointMake(cardCurrentlyBeingTouched.xPosition, cardCurrentlyBeingTouched.yPosition); 

    [self addSubview:[cardCurrentlyBeingTouched uiImageViewAtPoint:moveToLoc rotated:0 withFaceImage:YES]]; 

    startTouchPoint.x = currentTouchPoint.x; 
    startTouchPoint.y = currentTouchPoint.y; 
    ... 
} 

所以,在drawRect,(在任何時候)self.currentTouchPoint.x相同startTouchPoint.x(如Y),如何在世界上卡的X和Y位置正在發生變化,如果增量始終爲0?(X和Y的位置是CGPoints,當我將它們打印進行比較時,我打印了浮標)

難道這是精確度問題嗎?

這是我的代碼,我寫它,它的工作原理。但爲什麼? :)

回答

1

從下面的快照可以看出,畢竟沒有奇蹟。這裏的教訓是,drawRect被稱爲非常經常(這當然是一件好事)

> 2011-12-22 21:38:56.912 myApp[8923:f803] -- 266.000000 and 266.000000 
> 2011-12-22 21:38:56.913 myApp[8923:f803] -- 266.000000 and 266.000000 
> 2011-12-22 21:38:56.915 myApp[8923:f803] -- 282.000000 and 266.000000 <--- 
> 2011-12-22 21:38:56.922 myApp[8923:f803] -- 282.000000 and 282.000000 
> 2011-12-22 21:38:56.923 myApp[8923:f803] -- 282.000000 and 282.000000 
> 2011-12-22 21:38:56.925 myApp[8923:f803] -- 282.000000 and 282.000000 
> 2011-12-22 21:38:56.932 myApp[8923:f803] -- 282.000000 and 282.000000 
> 2011-12-22 21:38:56.933 myApp[8923:f803] -- 282.000000 and 282.000000 
> 2011-12-22 21:38:56.934 myApp[8923:f803] -- 293.000000 and 282.000000 <--- 
> 2011-12-22 21:38:56.941 myApp[8923:f803] -- 293.000000 and 293.000000 
> 2011-12-22 21:38:56.942 myApp[8923:f803] -- 293.000000 and 293.000000 
> 2011-12-22 21:38:56.943 myApp[8923:f803] -- 293.000000 and 293.000000 
> 2011-12-22 21:38:56.950 myApp[8923:f803] -- 293.000000 and 293.000000 
> 2011-12-22 21:38:56.951 myApp[8923:f803] -- 293.000000 and 293.000000 
> 2011-12-22 21:38:56.952 myApp[8923:f803] -- 308.000000 and 293.000000 <--- 
> 2011-12-22 21:38:56.958 myApp[8923:f803] -- 308.000000 and 308.000000 
> 2011-12-22 21:38:56.959 myApp[8923:f803] -- 308.000000 and 308.000000 
> 2011-12-22 21:38:56.960 myApp[8923:f803] -- 320.000000 and 308.000000 <--- 
> 2011-12-22 21:38:56.975 myApp[8923:f803] -- 320.000000 and 320.000000 
> 2011-12-22 21:38:56.976 myApp[8923:f803] -- 320.000000 and 320.000000 
> 2011-12-22 21:38:56.977 myApp[8923:f803] -- 330.000000 and 320.000000 
> 2011-12-22 21:38:56.987 myApp[8923:f803] -- 330.000000 and 330.000000 
> 2011-12-22 21:38:56.988 myApp[8923:f803] -- 330.000000 and 330.000000 
> 2011-12-22 21:38:56.990 myApp[8923:f803] -- 339.000000 and 330.000000 <--- 
> 2011-12-22 21:38:56.999 myApp[8923:f803] -- 339.000000 and 339.000000 
> 2011-12-22 21:38:57.001 myApp[8923:f803] -- 339.000000 and 339.000000 
> 2011-12-22 21:38:57.002 myApp[8923:f803] -- 339.000000 and 339.000000 
> 2011-12-22 21:38:57.012 myApp[8923:f803] -- 339.000000 and 339.000000 
> 2011-12-22 21:38:57.013 myApp[8923:f803] -- 339.000000 and 339.000000 
> 2011-12-22 21:38:57.015 myApp[8923:f803] -- 349.000000 and 339.000000 <---