-3

「buttonPressed」というボタンがあります。ボタンを押すと、そのボタンのx座標とy座標を見つける必要があります。私を助けるかもしれないアイデアはありますか?

    UIButton *circleButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    circleButton.frame = rect;
    circleButton.layer.cornerRadius = 8.0f;
    [circleButton addTarget:self
                     action:@selector(buttonPressed:)
           forControlEvents:UIControlEventTouchUpInside];
    [self addSubview:circleButton];

-(void)buttonPressed:(id)sender
{

}

答え

     - (IBAction)buttonPressed:(UIButton *)sender
     {
       CGPoint coordinates = sender.frame.origin;
       CGFloat x = coordinates.x;
       CGFloat y = coordinates.y;
     }
4

1 に答える 1

9

アクションの送信者からXとYをオフにしたいようです。ボタンタップメソッドに送信者パラメーターを付加し、送信者のフレームを見つけます。

- (IBAction)buttonTapped:(UIButton *)sender
{
    CGPoint coordinates = sender.frame.origin;
}
于 2012-09-25T16:35:30.997 に答える