2011年3月6日日曜日

画面スライドによるパラメーター制御のコード

iPhoneの画面をスライドしてパラメーターを制御するときのコードの忘備録です。

-(IBAction)touchHand:(UIButton *)sender forEvent:(UIEvent *)event{

     NSSet *touches = [event touchesForView:sender];
     UITouch *touch = [touches anyObject];
     CGPoint touchPoint = [touch locationInView:sender];   

     IniPosY = touchPoint.y;

}

0 件のコメント:

コメントを投稿